aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-04-15 03:30:58 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-04-15 03:30:58 +0000
commit803f256ab259b0618d5df9a6f73ca48218ca7d81 (patch)
tree452fda2fd6ca489d6cdb06a61a2dbac7cdf3989d
parenta7e647c9f6aee7077c68baae7402392eee146eba (diff)
parent6af5a344e93b518ba699c403c9f1f2f851ed24e7 (diff)
downloadpica-android14-d1-s3-release.tar.gz
Change-Id: I25aa8fdadce7592869446b787cf979eff9e9ddf8
-rw-r--r--Cargo.toml8
1 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index de6e1be..327bd66 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -21,19 +21,19 @@ path = "src/bin/server/mod.rs"
[features]
default = ["web"]
-web = ["hyper"]
+web = ["hyper", "tokio/rt-multi-thread"]
[dependencies]
-tokio = { version = "1.18.5", features = ["full"] }
+tokio = { version = "1.25.0", features = [ "fs", "io-util", "macros", "net", "rt" ] }
tokio-stream = { version = "0.1.8", features = ["sync"] }
bytes = "1"
anyhow = "1.0.56"
num-derive = "*"
num-traits = "*"
thiserror = "*"
-glam = "0.20.3"
+glam = "0.23.0"
hyper = { version = "0.14", features = ["server", "stream", "http1", "tcp"], optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
hex = "0.4.3"
-clap = { version = "4.1.8", features = ["derive"] }
+clap = { version = "4.1.8", default-features = false, features = ["derive", "error-context", "help", "std", "usage"] }