Update dependency

Use `aya = ">=0.11"` and therefore the Aya version picked by
Cargo will be bounded by the latest version supported in
`aya-log = "0.1"` - once it's been released again.

Signed-off-by: Dave Tucker <dave@dtucker.co.uk>
pull/49/head
Dave Tucker 2 years ago
parent c6b6f1ed3d
commit 3b2b186e0b

@ -1,5 +1,2 @@
[workspace]
members = ["{{project-name}}", "{{project-name}}-common", "xtask"]
[patch.crates-io]
aya = { git = "https://github.com/aya-rs/aya", branch = "main" }

@ -8,7 +8,7 @@ default = []
user = [ "aya" ]
[dependencies]
aya = { git = "https://github.com/aya-rs/aya", branch = "main", optional=true }
aya = { version = ">=0.11", optional=true }
[lib]
path = "src/lib.rs"
path = "src/lib.rs"

@ -5,7 +5,7 @@ edition = "2021"
publish = false
[dependencies]
aya = { git = "https://github.com/aya-rs/aya", branch = "main" }
aya = { version = ">=0.11", features=["async_tokio"] }
aya-log = "0.1"
{{project-name}}-common = { path = "../{{project-name}}-common", features=["user"] }
anyhow = "1.0.42"

Loading…
Cancel
Save