-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
123 changed files
with
216 additions
and
1,094 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ Cargo.lock | |
.idea/ | ||
*.iml | ||
.vscode/ | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[submodule "openssl-sys/deps/boringssl"] | ||
path = openssl-sys/deps/boringssl | ||
[submodule "boring-sys/deps/boringssl"] | ||
path = boring-sys/deps/boringssl | ||
url = https://github.com/google/boringssl.git | ||
ignore = dirty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[workspace] | ||
members = [ | ||
"openssl", | ||
"openssl-sys", | ||
"boring", | ||
"boring-sys", | ||
"systest" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,21 @@ | ||
# rust-openssl | ||
# boring | ||
|
||
[](https://circleci.com/gh/sfackler/rust-openssl) | ||
[](https://crates.io/crates/openssl) | ||
[](https://crates.io/crates/boring) | ||
|
||
OpenSSL bindings for the Rust programming language. | ||
BoringSSL bindings for the Rust programming language. | ||
|
||
[Documentation](https://docs.rs/openssl). | ||
[Documentation](https://docs.rs/boring). | ||
|
||
## Release Support | ||
|
||
The current supported release of `openssl` is 0.10 and `openssl-sys` is 0.9. | ||
|
||
New major versions will be published at most once per year. After a new | ||
release, the previous major version will be partially supported with bug | ||
fixes for 3 months, after which support will be dropped entirely. | ||
The crate statically links with the latest BoringSSL master branch. | ||
|
||
### Contribution | ||
|
||
Unless you explicitly state otherwise, any contribution intentionally | ||
submitted for inclusion in the work by you, as defined in the Apache-2.0 | ||
license, shall be dual licensed under the terms of both the Apache License, | ||
Version 2.0 and the MIT license without any additional terms or conditions. | ||
|
||
## Accolades | ||
The project is based on a fork of [rust-openssl](https://github.com/sfackler/rust-openssl). |
Oops, something went wrong.