Browse Source
Use latest github snapshot of xtra
Master branch includes some desired fixes, such as clippy warnings when a future
has not been awaited.
fix-bad-api-calls
Mariusz Klochowicz
4 years ago
No known key found for this signature in database
GPG Key ID: 470C865699C8D4D
3 changed files with
4 additions and
4 deletions
-
Cargo.lock
-
Cargo.toml
-
daemon/Cargo.toml
|
|
@ -3068,9 +3068,8 @@ dependencies = [ |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "xtra" |
|
|
|
version = "0.5.1" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "bd0133cb26accfd34360ab6b8fe9745d8907dcaee0cd7f8191dee4fd884e88d0" |
|
|
|
version = "0.6.0" |
|
|
|
source = "git+https://github.com/Restioson/xtra#1ba8cb3f98502363fdea8008b47b9c9b5eba6b5f" |
|
|
|
dependencies = [ |
|
|
|
"async-trait", |
|
|
|
"barrage", |
|
|
|
|
|
@ -4,3 +4,4 @@ resolver = "2" |
|
|
|
|
|
|
|
[patch.crates-io] |
|
|
|
rocket = { git = "https://github.com/SergioBenitez/Rocket" } # Need to patch rocket dependency of `rocket_basicauth` until there is an official release. |
|
|
|
xtra = { git = "https://github.com/Restioson/xtra" } # Need to patch xtra dependency until there is an official release as it contains useful PRs from us. |
|
|
|
|
|
@ -32,7 +32,7 @@ tokio-util = { version = "0.6", features = ["codec"] } |
|
|
|
tracing = { version = "0.1" } |
|
|
|
tracing-subscriber = { version = "0.2", default-features = false, features = ["fmt", "ansi", "env-filter", "chrono", "tracing-log", "json"] } |
|
|
|
uuid = { version = "0.8", features = ["serde", "v4"] } |
|
|
|
xtra = { version = "0.5", features = ["with-tokio-1"] } |
|
|
|
xtra = { version = "0.6", features = ["with-tokio-1"] } |
|
|
|
|
|
|
|
[[bin]] |
|
|
|
name = "taker" |
|
|
|