summaryrefslogtreecommitdiffstats
path: root/ipfs-api-prelude
diff options
context:
space:
mode:
authorFerris Tseng <ferristseng@fastmail.fm>2021-02-23 23:44:34 -0500
committerFerris Tseng <ferristseng@fastmail.fm>2021-02-23 23:44:34 -0500
commitdd03b0edb4928894b64b85cc44a4984a721650c2 (patch)
treeb6ad89b14a233a97ab1c2227865fbf48170ac4c7 /ipfs-api-prelude
parent1dbab207ece88a47f92b951a83ef8d95dc40fe1c (diff)
fixing actix examples by upgrading to new rt
Diffstat (limited to 'ipfs-api-prelude')
-rw-r--r--ipfs-api-prelude/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipfs-api-prelude/Cargo.toml b/ipfs-api-prelude/Cargo.toml
index 21f9088..ed2c03b 100644
--- a/ipfs-api-prelude/Cargo.toml
+++ b/ipfs-api-prelude/Cargo.toml
@@ -17,7 +17,7 @@ with-builder = ["typed-builder"]
[dependencies]
async-trait = "0.1"
bytes = "1.0"
-common-multipart-rfc7578 = "0.3.0"
+common-multipart-rfc7578 = { version = "0.3", git = "https://github.com/ferristseng/rust-multipart-rfc7578", branch = "ftseng/upgrade-actix-rt" }
dirs = "3.0"
futures = "0.3"
http = "0.2"
@@ -26,7 +26,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_urlencoded = "0.7"
thiserror = "1.0"
-tokio = "1.2"
+tokio = "1"
tokio-util = { version = "0.6", features = ["codec"] }
tracing = "0.1"
typed-builder = { version = "0.9", optional = true }