Skip to content

Commit f74ca07

Browse files
chore: bump workspace to 0.5.2, agents to 0.5.1
1 parent 3766661 commit f74ca07

10 files changed

Lines changed: 26 additions & 26 deletions

File tree

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ exclude = [
1818
resolver = "2"
1919

2020
[workspace.package]
21-
version = "0.5.1"
21+
version = "0.5.2"
2222
edition = "2021"
2323
authors = ["Zentinel Contributors"]
2424
license = "MIT OR Apache-2.0"

agents/data-masking/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zentinel-data-masking-agent"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2021"
55
authors = ["Zentinel Contributors"]
66
license = "MIT OR Apache-2.0"
@@ -16,8 +16,8 @@ path = "src/main.rs"
1616

1717
[dependencies]
1818
# Local dependencies
19-
zentinel-agent-protocol = { path = "../../crates/agent-protocol", version = "0.5.0" }
20-
zentinel-common = { path = "../../crates/common", version = "0.5.0" }
19+
zentinel-agent-protocol = { path = "../../crates/agent-protocol", version = "0.5.2" }
20+
zentinel-common = { path = "../../crates/common", version = "0.5.2" }
2121

2222
# Async runtime
2323
tokio = { version = "1.49", features = ["rt-multi-thread", "net", "sync", "time", "macros"] }

agents/echo/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zentinel-echo-agent"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2021"
55
authors = ["Zentinel Contributors"]
66
license = "MIT OR Apache-2.0"
@@ -16,8 +16,8 @@ path = "src/main.rs"
1616

1717
[dependencies]
1818
# Local dependencies
19-
zentinel-agent-protocol = { path = "../../crates/agent-protocol", version = "0.5.0" }
20-
zentinel-common = { path = "../../crates/common", version = "0.5.0" }
19+
zentinel-agent-protocol = { path = "../../crates/agent-protocol", version = "0.5.2" }
20+
zentinel-common = { path = "../../crates/common", version = "0.5.2" }
2121

2222
# Async runtime
2323
tokio = { version = "1.49", features = ["full"] }

crates/agent-protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ mmap-buffers = ["memmap2", "dep:tempfile"]
2020

2121
[dependencies]
2222
# Local crates
23-
zentinel-common = { path = "../common", version = "0.5.1" }
23+
zentinel-common = { path = "../common", version = "0.5.2" }
2424

2525
# Protocol and serialization
2626
prost = { workspace = true }

crates/config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ categories = ["config", "network-programming"]
1313

1414
[dependencies]
1515
# Local crates
16-
zentinel-common = { path = "../common", version = "0.5.1", default-features = false }
16+
zentinel-common = { path = "../common", version = "0.5.2", default-features = false }
1717

1818
# Configuration formats
1919
kdl = { workspace = true }

crates/playground-wasm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zentinel-playground-wasm"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
edition = "2021"
55
authors = ["Zentinel Contributors"]
66
license = "MIT OR Apache-2.0"
@@ -16,7 +16,7 @@ crate-type = ["cdylib", "rlib"]
1616

1717
[dependencies]
1818
# Local crates
19-
zentinel-sim = { path = "../sim", version = "0.5.1" }
19+
zentinel-sim = { path = "../sim", version = "0.5.2" }
2020

2121
# WASM bindings
2222
wasm-bindgen = "0.2"

crates/proxy/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ pingora-cache = { workspace = true }
3333
pingora-memory-cache = { workspace = true }
3434

3535
# Local crates
36-
zentinel-config = { path = "../config", version = "0.5.1", features = ["validation"] }
37-
zentinel-common = { path = "../common", version = "0.5.1" }
38-
zentinel-agent-protocol = { path = "../agent-protocol", version = "0.5.1" }
36+
zentinel-config = { path = "../config", version = "0.5.2", features = ["validation"] }
37+
zentinel-common = { path = "../common", version = "0.5.2" }
38+
zentinel-agent-protocol = { path = "../agent-protocol", version = "0.5.2" }
3939

4040
# Async runtime
4141
tokio = { workspace = true }

crates/sim/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zentinel-sim"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
edition = "2021"
55
authors = ["Zentinel Contributors"]
66
license = "MIT OR Apache-2.0"
@@ -13,8 +13,8 @@ categories = ["simulation", "wasm", "network-programming"]
1313

1414
[dependencies]
1515
# Local crates (WASM-compatible - disable runtime features)
16-
zentinel-config = { path = "../config", version = "0.5.1", default-features = false }
17-
zentinel-common = { path = "../common", version = "0.5.1", default-features = false }
16+
zentinel-config = { path = "../config", version = "0.5.2", default-features = false }
17+
zentinel-common = { path = "../common", version = "0.5.2", default-features = false }
1818

1919
# Serialization
2020
serde = { version = "1.0", features = ["derive"] }

crates/wasm-runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ categories = ["wasm", "network-programming"]
1313

1414
[dependencies]
1515
# Local crates
16-
zentinel-agent-protocol = { path = "../agent-protocol", version = "0.5.1" }
16+
zentinel-agent-protocol = { path = "../agent-protocol", version = "0.5.2" }
1717

1818
# Wasmtime runtime with component model
1919
wasmtime = { version = "41", features = ["component-model", "async", "cranelift"] }

0 commit comments

Comments
 (0)