This commit is contained in:
Gabriel Tofvesson 2023-03-18 01:23:13 +01:00
parent 412a79ac56
commit 48f07d3201
No known key found for this signature in database
GPG Key ID: 6F1345DF28EDA13E
2 changed files with 28 additions and 2 deletions

26
Cargo.lock generated
View File

@ -460,6 +460,16 @@ version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
[[package]]
name = "mime_guess"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
dependencies = [
"mime",
"unicase",
]
[[package]]
name = "mio"
version = "0.8.6"
@ -657,6 +667,7 @@ dependencies = [
"js-sys",
"log",
"mime",
"mime_guess",
"native-tls",
"once_cell",
"percent-encoding",
@ -941,6 +952,15 @@ version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
[[package]]
name = "unicase"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
dependencies = [
"version_check",
]
[[package]]
name = "unicode-bidi"
version = "0.3.11"
@ -979,6 +999,12 @@ 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"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "want"
version = "0.3.0"

View File

@ -8,7 +8,7 @@ edition = "2021"
[dependencies]
anyhow = "1.0.69"
derive_builder = "0.12.0"
reqwest = { versino = "0.11.14", features = [ "json" ] }
reqwest = { version = "0.11.14", features = [ "json", "multipart" ] }
serde = { version = "1.0.156", features = ["derive"] }
serde_json = "1.0.94"
tokio = { versino = "1.26.0", features = [ "full" ] }
tokio = { version = "1.26.0", features = [ "full" ] }