-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add rustls library and fix free identifier error message (#291)
* add rustls and fix free identifier error message * remove prints * remove warnings * more fixes * fix warnings * fix warning
- Loading branch information
1 parent
9a2bb2e
commit af792c7
Showing
13 changed files
with
565 additions
and
48 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
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[package] | ||
name = "steel-rustls" | ||
edition = "2021" | ||
version.workspace = true | ||
|
||
[lib] | ||
name = "steel_rustls" | ||
crate-type = ["rlib", "cdylib"] | ||
|
||
[dependencies] | ||
steel-core = { path = "../../crates/steel-core", version = "0.6.0", features = ["dylibs", "sync"] } | ||
abi_stable = "0.11.1" | ||
rustls = "0.23.17" | ||
webpki-roots = "0.26" | ||
flate2 = "1.0.35" | ||
|
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
(#%require-dylib "libsteel_rustls" (only-in | ||
client-connection | ||
gz-decode | ||
tcp-connect | ||
tcp-reader | ||
tcp-writer | ||
tls-reader | ||
tls-stream | ||
tls-writer | ||
)) | ||
(provide | ||
client-connection | ||
gz-decode | ||
tcp-connect | ||
tcp-reader | ||
tcp-writer | ||
tls-reader | ||
tls-stream | ||
tls-writer | ||
) |
Oops, something went wrong.