• Home
Name Date Size #Lines LOC

..--

.cargo/06-Sep-2024-32

examples/06-Sep-2024-161128

patches/06-Sep-2024-1,035954

src/06-Sep-2024-35,07225,323

test/06-Sep-2024-750714

.cargo_vcs_info.jsonD06-Sep-2024101 66

Android.bpD06-Sep-20244.3 KiB121115

CHANGELOG.mdD06-Sep-202435.1 KiB962661

Cargo.lockD06-Sep-20249.7 KiB373327

Cargo.tomlD06-Sep-20241.3 KiB6655

Cargo.toml.origD06-Sep-2024845 3731

LICENSED06-Sep-2024618 1612

METADATAD06-Sep-2024583 2119

MODULE_LICENSE_APACHE2D06-Sep-20240

OWNERSD06-Sep-2024114 43

README.androidD06-Sep-2024589 1510

README.mdD06-Sep-2024830 2314

TEST_MAPPINGD06-Sep-2024543 2423

build.rsD06-Sep-20243.5 KiB118109

cargo_embargo.jsonD06-Sep-2024603 3534

README.android

1## Steps for updating this crate
2
31.  Run `tools/external_updater/updater.sh update rust/crates/openssl`.
42.  `external/rust/crates/openssl-macros` should also be updated at the same time.
5
6## Generating patch files
7
8If you make changes to this repo that is not in upstream `rust-openssl` yet, please generate a
9patch file to keep track of those changes.
10
111. Commit your changes
122. Create the patch file: `git diff -u HEAD~ > <XXXX-topic>.diff` where XXXX is the number to track
13   the order of the patches to apply.
143. Amend the patch file into your CL `git add -A && git commit --amend`
15

README.md

1# rust-openssl
2
3[![crates.io](https://img.shields.io/crates/v/openssl.svg)](https://crates.io/crates/openssl)
4
5OpenSSL bindings for the Rust programming language.
6
7[Documentation](https://docs.rs/openssl).
8
9## Release Support
10
11The current supported release of `openssl` is 0.10 and `openssl-sys` is 0.9.
12
13New major versions will be published at most once per year. After a new
14release, the previous major version will be partially supported with bug
15fixes for 3 months, after which support will be dropped entirely.
16
17### Contribution
18
19Unless you explicitly state otherwise, any contribution intentionally
20submitted for inclusion in the work by you, as defined in the Apache-2.0
21license, shall be dual licensed under the terms of both the Apache License,
22Version 2.0 and the MIT license without any additional terms or conditions.
23