Skip to content

Commit 0b57c6e

Browse files
authored
chore(rust): Fix dependency resolution for release (#1458)
1 parent edeb309 commit 0b57c6e

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ members = [
1313
]
1414
resolver = "3"
1515

16+
[workspace.dependencies]
17+
agent-client-protocol-schema = { path = "agent-client-protocol-schema", version = "0.13.8" }
18+
1619
[workspace.lints.rust]
1720
future_incompatible = { level = "warn", priority = -1 }
1821
let-underscore = "warn"

schema-generator/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ name = "schema-generator"
33
version = "0.0.0"
44
edition = "2024"
55
publish = false
6+
license = "Apache-2.0"
7+
description = "Internal generator for Agent Client Protocol JSON Schema artifacts"
8+
repository = "https://github.com/agentclientprotocol/agent-client-protocol"
69

710
[lints]
811
workspace = true
@@ -16,7 +19,7 @@ unstable_protocol_v2 = ["agent-client-protocol-schema/unstable_protocol_v2"]
1619
unstable_cancel_request = ["agent-client-protocol-schema/unstable_cancel_request"]
1720

1821
[dependencies]
19-
agent-client-protocol-schema = { path = "../agent-client-protocol-schema" }
22+
agent-client-protocol-schema = { workspace = true }
2023
schemars = "1"
2124
serde = { version = "1", features = ["derive"] }
2225
serde_json = { version = "1", features = ["preserve_order"] }

0 commit comments

Comments
 (0)