diff options
author | Alex Auvolat <alex@adnab.me> | 2022-10-13 14:35:39 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-10-14 14:30:48 +0200 |
commit | 8d04ae7014991319e97d4280f0e9d7a70c89f10b (patch) | |
tree | caef421dd2ac7d047045d04f5cb4893138759adf /src | |
parent | a096ced35562bd0a8877a1ee2f755be1edafe343 (diff) | |
download | garage-8d04ae7014991319e97d4280f0e9d7a70c89f10b.tar.gz garage-8d04ae7014991319e97d4280f0e9d7a70c89f10b.zip |
cargo2nix unstable (patched), rust 1.63.0, nixpkgs 22.05 (32-bit builds are broken)
Diffstat (limited to 'src')
-rw-r--r-- | src/api/Cargo.toml | 2 | ||||
-rw-r--r-- | src/web/web_server.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/api/Cargo.toml b/src/api/Cargo.toml index 7c3ed43b..4d9a6ab6 100644 --- a/src/api/Cargo.toml +++ b/src/api/Cargo.toml @@ -36,7 +36,7 @@ sha2 = "0.10" futures = "0.3" futures-util = "0.3" -pin-project = "1.0" +pin-project = "1.0.11" tokio = { version = "1.0", default-features = false, features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros", "sync", "signal", "fs"] } tokio-stream = "0.1" diff --git a/src/web/web_server.rs b/src/web/web_server.rs index c2322073..1541c297 100644 --- a/src/web/web_server.rs +++ b/src/web/web_server.rs @@ -318,7 +318,7 @@ fn path_to_key<'a>(path: &'a str, index: &str) -> Result<Cow<'a, str>, Error> { } Some(_) => match path_utf8 { Cow::Borrowed(pu8) => Ok((&pu8[1..]).into()), - Cow::Owned(pu8) => Ok((&pu8[1..]).to_string().into()), + Cow::Owned(pu8) => Ok(pu8[1..].to_string().into()), }, } } |