diff --git a/Cargo.toml b/Cargo.toml index 33f1d07d..9a260331 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,13 +57,6 @@ edition = "2021" anyhow = { version = "1", default-features = false } assert_matches = { version = "1.5.0", default-features = false } async-io = { version = "2.0", default-features = false } -aya = { path = "aya", version = "0.11.0", default-features = false } -aya-bpf = { path = "bpf/aya-bpf", default-features = false } -aya-log = { path = "aya-log", default-features = false } -aya-log-common = { path = "aya-log-common", version = "0.1.13", default-features = false } -aya-log-parser = { path = "aya-log-parser", default-features = false } -aya-obj = { path = "aya-obj", version = "0.1.0", default-features = false } -aya-tool = { path = "aya-tool", default-features = false } bindgen = { version = "0.69", default-features = false } bitflags = { version = "2.2.1", default-features = false } bytes = { version = "1", default-features = false } diff --git a/aya-bpf-macros/Cargo.toml b/aya-bpf-macros/Cargo.toml index 185ce7a9..bf53a8a8 100644 --- a/aya-bpf-macros/Cargo.toml +++ b/aya-bpf-macros/Cargo.toml @@ -18,4 +18,4 @@ quote = { workspace = true } syn = { workspace = true, default-features = true, features = ["full"] } [dev-dependencies] -aya-bpf = { workspace = true } +aya-bpf = { path = "../bpf/aya-bpf", version = "0.1.0", default-features = false } diff --git a/aya-log-ebpf-macros/Cargo.toml b/aya-log-ebpf-macros/Cargo.toml index 28e956b2..80e7801b 100644 --- a/aya-log-ebpf-macros/Cargo.toml +++ b/aya-log-ebpf-macros/Cargo.toml @@ -9,8 +9,8 @@ homepage.workspace = true edition.workspace = true [dependencies] -aya-log-common = { workspace = true } -aya-log-parser = { workspace = true } +aya-log-common = { path = "../aya-log-common", version = "0.1.13", default-features = false } +aya-log-parser = { path = "../aya-log-parser", version = "0.1.13", default-features = false } proc-macro2 = { workspace = true } quote = { workspace = true } syn = { workspace = true } diff --git a/aya-log-parser/Cargo.toml b/aya-log-parser/Cargo.toml index fdb8bb06..8ac68cfd 100644 --- a/aya-log-parser/Cargo.toml +++ b/aya-log-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aya-log-parser" -version = "0.1.11-dev.0" +version = "0.1.13" description = "A parser for the aya log format strings" authors.workspace = true license.workspace = true @@ -9,7 +9,7 @@ homepage.workspace = true edition.workspace = true [dependencies] -aya-log-common = { workspace = true } +aya-log-common = { path = "../aya-log-common", version = "0.1.13", default-features = false } [lib] path = "src/lib.rs" diff --git a/aya-log/Cargo.toml b/aya-log/Cargo.toml index 4357b472..091d7821 100644 --- a/aya-log/Cargo.toml +++ b/aya-log/Cargo.toml @@ -12,8 +12,8 @@ homepage.workspace = true edition.workspace = true [dependencies] -aya = { workspace = true, features = ["async_tokio"] } -aya-log-common = { workspace = true } +aya = { path = "../aya", version = "0.11.0", features = ["async_tokio"] } +aya-log-common = { path = "../aya-log-common", version = "0.1.13", default-features = false } bytes = { workspace = true } log = { workspace = true } thiserror = { workspace = true } diff --git a/aya/Cargo.toml b/aya/Cargo.toml index 2b37aa4f..35f06aa4 100644 --- a/aya/Cargo.toml +++ b/aya/Cargo.toml @@ -15,7 +15,7 @@ edition.workspace = true [dependencies] assert_matches = { workspace = true } async-io = { workspace = true, optional = true } -aya-obj = { workspace = true, features = ["std"] } +aya-obj = { path = "../aya-obj", version = "0.1.0", features = ["std"] } bitflags = { workspace = true } bytes = { workspace = true } lazy_static = { workspace = true } diff --git a/test/integration-test/Cargo.toml b/test/integration-test/Cargo.toml index 8a554a2d..1dce4f3c 100644 --- a/test/integration-test/Cargo.toml +++ b/test/integration-test/Cargo.toml @@ -11,9 +11,9 @@ edition.workspace = true [dependencies] anyhow = { workspace = true, features = ["std"] } assert_matches = { workspace = true } -aya = { workspace = true } -aya-log = { workspace = true } -aya-obj = { workspace = true } +aya = { path = "../../aya", version = "0.11.0", default-features = false } +aya-log = { path = "../../aya-log", version = "0.1.13", default-features = false } +aya-obj = { path = "../../aya-obj", version = "0.1.0", default-features = false } env_logger = { workspace = true } epoll = { workspace = true } futures = { workspace = true, features = ["std"] } diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 87374a0a..0c617dea 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -10,7 +10,7 @@ edition.workspace = true [dependencies] anyhow = { workspace = true, features = ["std"] } -aya-tool = { workspace = true } +aya-tool = { path = "../aya-tool", version = "0.1.0", default-features = false } cargo_metadata = { workspace = true } clap = { workspace = true, features = ["derive"] } dialoguer = { workspace = true }