Skip to content

Commit 2bf9447

Browse files
author
Eric Swanson
authored
fix: static-link ssl (#53)
* fix: for missing libssl.so.1.1 on install * allow unlicensed dependencies
1 parent a9e122d commit 2bf9447

4 files changed

Lines changed: 115 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- `dfxvm --version` now reports the version
1313
- changed the dfxvm-init `--proceed` parameter to `--yes`
14+
- static link to openssl
1415

1516
## [0.1.3] - 2024-01-19
1617

Cargo.lock

Lines changed: 112 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ futures-util = "0.3.14"
2222
hex = "0.4.3"
2323
indicatif = "0.15.0"
2424
itertools = "0.11.0"
25-
reqwest = { version = "0.11.22", features = [ "stream" ] }
25+
reqwest = { version = "0.11.22", features = [ "stream", "rustls-tls", "native-tls-vendored" ] }
2626
semver = { version = "1.0", features = [ "serde" ] }
2727
serde = { version = "1.0", features = [ "derive" ] }
2828
serde_json = "1.0"

deny.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# so copyleft licenses like MPL which allow static linking are A-OK
55
[licenses]
66
default = "deny"
7+
unlicensed = "allow"
78

89
allow = [
910
"Apache-2.0",

0 commit comments

Comments
 (0)