This commit is contained in:
dependabot[bot] 2024-11-27 16:27:36 +00:00 committed by GitHub
commit 39878b7a0b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 67 additions and 18 deletions

81
Cargo.lock generated
View file

@ -972,7 +972,7 @@ dependencies = [
"grin_store",
"grin_util",
"http",
"hyper",
"hyper 0.14.12",
"hyper-rustls",
"hyper-timeout",
"lazy_static",
@ -984,7 +984,7 @@ dependencies = [
"serde_derive",
"serde_json",
"thiserror",
"tokio",
"tokio 0.2.25",
"tokio-rustls",
"url",
]
@ -1146,7 +1146,7 @@ dependencies = [
"grin_store",
"grin_util",
"http",
"hyper",
"hyper 0.14.12",
"hyper-rustls",
"lmdb-zero",
"log",
@ -1154,7 +1154,7 @@ dependencies = [
"serde",
"serde_derive",
"serde_json",
"tokio",
"tokio 0.2.25",
"tokio-util 0.2.0",
"walkdir",
]
@ -1216,7 +1216,7 @@ dependencies = [
"http",
"indexmap 1.9.3",
"slab",
"tokio",
"tokio 0.2.25",
"tokio-util 0.3.1",
"tracing",
"tracing-futures",
@ -1289,6 +1289,17 @@ dependencies = [
"http",
]
[[package]]
name = "http-body"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
dependencies = [
"bytes 1.1.0",
"http",
"pin-project-lite 0.2.9",
]
[[package]]
name = "httparse"
version = "1.9.4"
@ -1301,6 +1312,12 @@ version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47"
[[package]]
name = "httpdate"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
[[package]]
name = "humansize"
version = "1.1.1"
@ -1334,13 +1351,35 @@ dependencies = [
"futures-util",
"h2",
"http",
"http-body",
"http-body 0.3.1",
"httparse",
"httpdate",
"httpdate 0.3.2",
"itoa 0.4.8",
"pin-project",
"socket2",
"tokio",
"tokio 0.2.25",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper"
version = "0.14.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13f67199e765030fa08fe0bd581af683f0d5bc04ea09c2b1102012c5fb90e7fd"
dependencies = [
"bytes 1.1.0",
"futures-channel",
"futures-core",
"futures-util",
"http",
"http-body 0.4.5",
"httparse",
"httpdate 1.0.2",
"itoa 0.4.8",
"pin-project-lite 0.2.9",
"tokio 1.20.0",
"tower-service",
"tracing",
"want",
@ -1355,11 +1394,11 @@ dependencies = [
"bytes 0.5.6",
"ct-logs",
"futures-util",
"hyper",
"hyper 0.13.10",
"log",
"rustls",
"rustls-native-certs",
"tokio",
"tokio 0.2.25",
"tokio-rustls",
"webpki",
]
@ -1371,8 +1410,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d1f9b0b8258e3ef8f45928021d3ef14096c2b93b99e4b8cfcabf1f58ec84b0a"
dependencies = [
"bytes 0.5.6",
"hyper",
"tokio",
"hyper 0.13.10",
"tokio 0.2.25",
"tokio-io-timeout",
]
@ -2876,6 +2915,16 @@ dependencies = [
"winapi 0.3.9",
]
[[package]]
name = "tokio"
version = "1.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57aec3cfa4c296db7255446efb4928a6be304b431a806216105542a67b6ca82e"
dependencies = [
"autocfg 1.1.0",
"pin-project-lite 0.2.9",
]
[[package]]
name = "tokio-io-timeout"
version = "0.4.0"
@ -2883,7 +2932,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9390a43272c8a6ac912ed1d1e2b6abeafd5047e05530a2fa304deee041a06215"
dependencies = [
"bytes 0.5.6",
"tokio",
"tokio 0.2.25",
]
[[package]]
@ -2905,7 +2954,7 @@ checksum = "15cb62a0d2770787abc96e99c1cd98fcf17f94959f3af63ca85bdfb203f051b4"
dependencies = [
"futures-core",
"rustls",
"tokio",
"tokio 0.2.25",
"webpki",
]
@ -2920,7 +2969,7 @@ dependencies = [
"futures-sink",
"log",
"pin-project-lite 0.1.12",
"tokio",
"tokio 0.2.25",
]
[[package]]
@ -2934,7 +2983,7 @@ dependencies = [
"futures-sink",
"log",
"pin-project-lite 0.1.12",
"tokio",
"tokio 0.2.25",
]
[[package]]

View file

@ -11,7 +11,7 @@ edition = "2018"
[dependencies]
easy-jsonrpc-mw = "0.5.4"
hyper = "0.13"
hyper = "0.14"
lazy_static = "1"
regex = "1"
ring = "0.16"

View file

@ -10,7 +10,7 @@ workspace = ".."
edition = "2018"
[dependencies]
hyper = "0.13"
hyper = "0.14"
hyper-rustls = "0.20"
fs2 = "0.4"
futures = "0.3"