Update multipart-client-stream

This commit is contained in:
asonix 2023-07-20 21:00:55 -05:00
parent 99cbe6337e
commit 7f49d2fba6
2 changed files with 10 additions and 4 deletions

12
Cargo.lock generated
View file

@ -480,6 +480,12 @@ dependencies = [
"once_cell",
]
[[package]]
name = "fastrand"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764"
[[package]]
name = "fnv"
version = "1.0.7"
@ -758,15 +764,15 @@ dependencies = [
[[package]]
name = "multipart-client-stream"
version = "0.1.0"
source = "git+https://git.asonix.dog/asonix/multipart-client-stream#b655ef851145ea120d637ff7bfb6a3e8964281c9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8343ec85f7341d01903892850748fe3b0c3254a80579f0b78827ffc79bad8669"
dependencies = [
"bytes",
"fastrand",
"futures-core",
"mime",
"rand",
"tokio",
"tokio-util",
"tracing",
]
[[package]]

View file

@ -12,7 +12,7 @@ clap = { version = "4.3.12", features = ["derive"] }
color-eyre = "0.6.2"
eyre = "0.6.8"
mime = "0.3.17"
multipart-client-stream = { git = "https://git.asonix.dog/asonix/multipart-client-stream", version = "0.1.0" }
multipart-client-stream = "0.1.0"
serde = { version = "1.0.171", features = ["derive"] }
serde_json = "1.0.103"
time = { version = "0.3.23", features = ["serde", "parsing", "formatting"] }