with vendored zlib
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone Build is failing

This commit is contained in:
Kasper Juul Hermansen 2022-11-06 16:19:22 +01:00
parent 709b27f8de
commit 75d6ed2e34
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23
2 changed files with 21 additions and 0 deletions

20
Cargo.lock generated
View File

@ -77,6 +77,15 @@ dependencies = [
"os_str_bytes",
]
[[package]]
name = "cmake"
version = "0.1.49"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db34956e100b30725f2eb215f90d4871051239535632f84fea3bc92722c66b7c"
dependencies = [
"cc",
]
[[package]]
name = "eyre"
version = "0.6.8"
@ -220,6 +229,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf"
dependencies = [
"cc",
"cmake",
"libc",
"pkg-config",
"vcpkg",
@ -246,6 +256,15 @@ version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-src"
version = "111.24.0+1.1.1s"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3498f259dab01178c6228c6b00dcef0ed2a2d5e20d648c017861227773ea4abd"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
version = "0.9.77"
@ -255,6 +274,7 @@ dependencies = [
"autocfg",
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]

View File

@ -13,6 +13,7 @@ eyre = "0.6.8"
git2 = { version = "0.15.0", features = [
"vendored-libgit2",
"vendored-openssl",
"zlib-ng-compat",
] }
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.87"