From: Ian Jackson Date: Sat, 30 Jan 2021 14:11:24 +0000 (+0000) Subject: daemon Cargo.toml: Fix dependency versions X-Git-Tag: otter-0.4.0~621 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=da1e2285da1535b73b909281fc0ab7cab46007ae;p=otter.git daemon Cargo.toml: Fix dependency versions We fixed this for src/ but daemon's Cargo.toml was resurrected from an earlier state so missed it. Signed-off-by: Ian Jackson --- diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index b3c2e36a..5501eec9 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -20,7 +20,7 @@ otter-zcoord = { path = "../zcoord" } anyhow = "1" argparse = "0.2" -arrayvec = "0" +arrayvec = "0.5" boolinator = "2" chrono = "0.4" chrono-tz = "0.5" @@ -48,7 +48,7 @@ ordered-float = "2" parking_lot = "0.11" percent-encoding = "2" pwd = "1" -rand = "0" +rand = "0.8" regex = "1" rmp = "0.8" rmp-serde = "0.15" @@ -61,7 +61,7 @@ strum = { version = "0.20", features = ['derive'] } thiserror = "1" toml = "0.5" typetag = "0.1.6" -uds = "0" +uds = "0.2" vecdeque-stableix = "1" rocket = { version = "^0.4.6", features=["sse"] }