static link

This commit is contained in:
core 2023-03-30 20:05:06 -04:00
parent ba3b3a185f
commit 33eab90298
Signed by: core
GPG Key ID: FDBF740DADDCEECF
3 changed files with 21 additions and 7 deletions

20
Cargo.lock generated
View File

@ -622,12 +622,13 @@ dependencies = [
[[package]]
name = "dnapi-rs"
version = "0.1.7"
version = "0.1.8"
dependencies = [
"base64 0.21.0",
"base64-serde",
"chrono",
"log",
"openssl-sys",
"rand",
"reqwest",
"serde",
@ -1520,14 +1521,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-sys"
version = "0.9.80"
name = "openssl-src"
version = "111.25.2+1.1.1t"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7"
checksum = "320708a054ad9b3bf314688b5db87cf4d6683d64cfc835e2337924ae62bf4431"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
version = "0.9.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "666416d899cf077260dac8698d60a60b435a46d57e82acb1be3d0dad87284e5b"
dependencies = [
"autocfg",
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]
@ -2482,6 +2493,7 @@ dependencies = [
"hex",
"ipnet",
"log",
"openssl-sys",
"reqwest",
"serde",
"serde_json",

View File

@ -1,6 +1,6 @@
[package]
name = "dnapi-rs"
version = "0.1.7"
version = "0.1.8"
edition = "2021"
description = "A rust client for the Defined Networking API"
license = "AGPL-3.0-or-later"
@ -21,4 +21,5 @@ base64 = "0.21.0"
serde_json = "1.0.95"
trifid-pki = { version = "0.1.6", path = "../trifid-pki", features = ["serde_derive"] }
rand = "0.8.5"
chrono = "0.4.24"
chrono = "0.4.24"
openssl-sys = { version = "0.9.83", features = ["vendored"] }

View File

@ -28,8 +28,9 @@ base64 = "0.21.0"
chrono = "0.4.24"
ipnet = "2.7.1"
base64-serde = "0.7.0"
dnapi-rs = { version = "0.1.7", path = "../dnapi-rs" }
dnapi-rs = { version = "0.1.8", path = "../dnapi-rs" }
serde_yaml = "0.9.19"
openssl-sys = { version = "0.9.83", features = ["vendored"] }
[build-dependencies]
serde = { version = "1.0.157", features = ["derive"] }