-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pelikan-net: multiple TLS/SSL implementations
Refactors the pelikan-net crate to allow building without TLS/SSL, or with BoringSSL and/or OpenSSL and TLS/SSL providers.
- Loading branch information
Showing
13 changed files
with
1,412 additions
and
458 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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
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
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 |
---|---|---|
|
@@ -2,17 +2,25 @@ | |
name = "pelikan-net" | ||
description = "Pelikan project's networking abstractions for non-blocking event loops" | ||
authors = ["Brian Martin <[email protected]>"] | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
|
||
edition = { workspace = true } | ||
homepage = { workspace = true } | ||
repository = { workspace = true } | ||
license = { workspace = true } | ||
|
||
[dependencies] | ||
boring = { workspace = true } | ||
boring-sys = { workspace = true } | ||
foreign-types-shared = { workspace = true } | ||
boring = { workspace = true, optional = true } | ||
boring-sys = { workspace = true, optional = true } | ||
foreign-types-shared_03 = { package = "foreign-types-shared", version = "0.3.1" } | ||
foreign-types-shared_01 = { package = "foreign-types-shared", version = "0.1.1" } | ||
libc = { workspace = true } | ||
metriken = { workspace = true } | ||
mio = { workspace = true, features = ["os-poll", "net"] } | ||
openssl = { workspace = true, optional = true } | ||
openssl-sys = { workspace = true, optional = true } | ||
|
||
[features] | ||
default = ["boringssl"] | ||
boringssl = ["boring", "boring-sys"] | ||
openssl = ["dep:openssl", "openssl-sys", "openssl/vendored"] |
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
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
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
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
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
Oops, something went wrong.