Browse Source
Merge pull request #155 from comit-network/xtra-upgrade
Use latest github snapshot of xtra
fix-bad-api-calls
Mariusz
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
4 additions and
4 deletions
-
Cargo.lock
-
Cargo.toml
-
daemon/Cargo.toml
|
|
@ -3069,9 +3069,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. |
|
|
|
|
|
@ -33,7 +33,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" |
|
|
|