Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
.cargo/ | 25-Apr-2025 | - | 3 | 2 | ||
examples/ | 25-Apr-2025 | - | 161 | 128 | ||
patches/ | 25-Apr-2025 | - | 1,131 | 1,041 | ||
src/ | 25-Apr-2025 | - | 35,079 | 25,330 | ||
test/ | 25-Apr-2025 | - | 750 | 714 | ||
.cargo_vcs_info.json | D | 25-Apr-2025 | 101 | 6 | 6 | |
Android.bp | D | 25-Apr-2025 | 3.3 KiB | 101 | 95 | |
CHANGELOG.md | D | 25-Apr-2025 | 35.1 KiB | 962 | 661 | |
Cargo.lock | D | 25-Apr-2025 | 9.7 KiB | 373 | 327 | |
Cargo.toml | D | 25-Apr-2025 | 1.3 KiB | 66 | 55 | |
Cargo.toml.orig | D | 25-Apr-2025 | 845 | 37 | 31 | |
LICENSE | D | 25-Apr-2025 | 618 | 16 | 12 | |
METADATA | D | 25-Apr-2025 | 583 | 21 | 19 | |
MODULE_LICENSE_APACHE2 | D | 25-Apr-2025 | 0 | |||
OWNERS | D | 25-Apr-2025 | 114 | 4 | 3 | |
README.android | D | 25-Apr-2025 | 589 | 15 | 10 | |
README.md | D | 25-Apr-2025 | 830 | 23 | 14 | |
TEST_MAPPING | D | 25-Apr-2025 | 543 | 24 | 23 | |
build.rs | D | 25-Apr-2025 | 3.5 KiB | 118 | 109 | |
cargo_embargo.json | D | 25-Apr-2025 | 2.3 KiB | 70 | 69 | |
rules.mk | D | 25-Apr-2025 | 755 | 26 | 18 |
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[](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