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
parent
commit
d5698614df
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      Cargo.lock
  2. 1
      Cargo.toml
  3. 2
      daemon/Cargo.toml

5
Cargo.lock

@ -3069,9 +3069,8 @@ dependencies = [
[[package]] [[package]]
name = "xtra" name = "xtra"
version = "0.5.1" version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/Restioson/xtra#1ba8cb3f98502363fdea8008b47b9c9b5eba6b5f"
checksum = "bd0133cb26accfd34360ab6b8fe9745d8907dcaee0cd7f8191dee4fd884e88d0"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"barrage", "barrage",

1
Cargo.toml

@ -4,3 +4,4 @@ resolver = "2"
[patch.crates-io] [patch.crates-io]
rocket = { git = "https://github.com/SergioBenitez/Rocket" } # Need to patch rocket dependency of `rocket_basicauth` until there is an official release. 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.

2
daemon/Cargo.toml

@ -33,7 +33,7 @@ tokio-util = { version = "0.6", features = ["codec"] }
tracing = { version = "0.1" } tracing = { version = "0.1" }
tracing-subscriber = { version = "0.2", default-features = false, features = ["fmt", "ansi", "env-filter", "chrono", "tracing-log", "json"] } tracing-subscriber = { version = "0.2", default-features = false, features = ["fmt", "ansi", "env-filter", "chrono", "tracing-log", "json"] }
uuid = { version = "0.8", features = ["serde", "v4"] } uuid = { version = "0.8", features = ["serde", "v4"] }
xtra = { version = "0.5", features = ["with-tokio-1"] } xtra = { version = "0.6", features = ["with-tokio-1"] }
[[bin]] [[bin]]
name = "taker" name = "taker"

Loading…
Cancel
Save