aya: Switch (again) from crates.io to git

This time we need to switch to git again, because of this unreleased
change:

aya-rs/aya@d1f2215193

Signed-off-by: Michal Rostecki <vadorovsky@gmail.com>
pull/45/head
Michal Rostecki 2 years ago
parent 807131b955
commit 9f69ee52b2

@ -1,2 +1,5 @@
[workspace] [workspace]
members = ["{{project-name}}", "{{project-name}}-common", "xtask"] 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" ] user = [ "aya" ]
[dependencies] [dependencies]
aya = { version = "0.10", optional=true } aya = { git = "https://github.com/aya-rs/aya", branch = "main", optional=true }
[lib] [lib]
path = "src/lib.rs" path = "src/lib.rs"

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

Loading…
Cancel
Save