• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

.cargo/25-Apr-2025-32

examples/25-Apr-2025-161128

patches/25-Apr-2025-1,1311,041

src/25-Apr-2025-35,07925,330

test/25-Apr-2025-750714

.cargo_vcs_info.jsonD25-Apr-2025101 66

Android.bpD25-Apr-20253.3 KiB10195

CHANGELOG.mdD25-Apr-202535.1 KiB962661

Cargo.lockD25-Apr-20259.7 KiB373327

Cargo.tomlD25-Apr-20251.3 KiB6655

Cargo.toml.origD25-Apr-2025845 3731

LICENSED25-Apr-2025618 1612

METADATAD25-Apr-2025583 2119

MODULE_LICENSE_APACHE2D25-Apr-20250

OWNERSD25-Apr-2025114 43

README.androidD25-Apr-2025589 1510

README.mdD25-Apr-2025830 2314

TEST_MAPPINGD25-Apr-2025543 2423

build.rsD25-Apr-20253.5 KiB118109

cargo_embargo.jsonD25-Apr-20252.3 KiB7069

rules.mkD25-Apr-2025755 2618

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