diff options
| author | MatthieuCoder <matthieu@matthieu-dev.xyz> | 2023-01-20 19:32:03 +0400 | 
|---|---|---|
| committer | MatthieuCoder <matthieu@matthieu-dev.xyz> | 2023-01-20 19:32:03 +0400 | 
| commit | 81dff65713ef63cfab918decb9edacb2f32759ef (patch) | |
| tree | 17a883479f87defb80fc8dc5f45e8b0c719da58d /Cargo.lock | |
| parent | a6b9dd778f5a017ba246ec4bd0f679e9539dac02 (diff) | |
new build infrastructure
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 58 | 
1 files changed, 12 insertions, 46 deletions
@@ -472,15 +472,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "338089f42c427b86394a5ee60ff321da23a5c89c9d89514c829687b26359fcff"  [[package]] -name = "crc32fast" -version = "1.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" -dependencies = [ - "cfg-if", -] - -[[package]]  name = "criterion"  version = "0.4.0"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -751,17 +742,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"  [[package]] -name = "flate2" -version = "1.0.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" -dependencies = [ - "crc32fast", - "libz-sys", - "miniz_oxide", -] - -[[package]]  name = "fnv"  version = "1.0.7"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1097,6 +1077,7 @@ dependencies = [   "rustls-native-certs",   "tokio",   "tokio-rustls", + "webpki-roots",  ]  [[package]] @@ -1235,17 +1216,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"  [[package]] -name = "libz-sys" -version = "1.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf" -dependencies = [ - "cc", - "pkg-config", - "vcpkg", -] - -[[package]]  name = "linked-hash-map"  version = "0.5.6"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1720,12 +1690,6 @@ dependencies = [  ]  [[package]] -name = "pkg-config" -version = "0.3.26" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" - -[[package]]  name = "plotters"  version = "0.3.4"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2708,11 +2672,11 @@ dependencies = [   "futures-util",   "log",   "rustls", - "rustls-native-certs",   "tokio",   "tokio-rustls",   "tungstenite",   "webpki", + "webpki-roots",  ]  [[package]] @@ -2979,11 +2943,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "ba43f8e8dc9f92f61c9ac4d339f7a8483c3ebef2b4f56fe62fb19e151dc79dae"  dependencies = [   "bitflags", - "flate2",   "futures-util",   "leaky-bucket-lite",   "rustls", - "rustls-native-certs",   "serde",   "serde_json",   "tokio", @@ -2993,6 +2955,7 @@ dependencies = [   "twilight-http",   "twilight-model",   "url", + "webpki-roots",  ]  [[package]] @@ -3139,12 +3102,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"  checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"  [[package]] -name = "vcpkg" -version = "0.2.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" - -[[package]]  name = "version_check"  version = "0.9.4"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -3277,6 +3234,15 @@ dependencies = [  ]  [[package]] +name = "webpki-roots" +version = "0.22.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" +dependencies = [ + "webpki", +] + +[[package]]  name = "which"  version = "4.3.0"  source = "registry+https://github.com/rust-lang/crates.io-index"  | 
