Skip to content

Commit 5d1e5b4

Browse files
committed
add vendored-openssl feature to allow embed openssl statically
1 parent 99f0bd2 commit 5d1e5b4

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

Cargo.lock

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ edition = "2021"
55
authors = ["Nicolas Dusart <[email protected]>", "Freedelity"]
66
license = "MIT"
77

8+
[features]
9+
vendored-openssl = ["ssh2/vendored-openssl"]
10+
811
[dependencies]
912
anyhow = "1.0"
1013
clap = { version = "4.4", default-features = false, features = ["derive", "std", "help", "usage"] }

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,12 @@ You can simply build this with the **Rust** toolchain (using **cargo** package m
6464
cargo build --release
6565
```
6666

67+
This build will be linked against the OpenSSL library of your system. If this makes an issue to deploy it on a machine with an incompatible version of OpenSSL, you can statically link OpenSSL in your binary by enabling the `vendored-openssl` feature (this will add ~4MB to the final binary):
68+
69+
```sh
70+
cargo build --release --feature vendored-openssl
71+
```
72+
6773
## License
6874

6975
This project is licensed under the [MIT license].

0 commit comments

Comments
 (0)