Skip to content

Commit 7107be5

Browse files
authored
Merge pull request #73 from nikomatsakis/main
cleanup cargo metadata
2 parents 1228386 + b7e6352 commit 7107be5

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

src/sacp-acp-client/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
name = "sacp-acp-client"
33
version = "0.1.0"
44
edition = "2024"
5+
description = "ACP client utilities for SACP"
6+
license = "MIT OR Apache-2.0"
57

68
[dependencies]
79
extension-trait = "1.0.2"

src/sacp-test/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22
name = "sacp-test"
33
version = "1.0.0"
44
edition = "2024"
5+
description = "Test utilities and mock implementations for SACP"
6+
license = "MIT OR Apache-2.0"
57

68
[[bin]]
79
name = "mcp-echo-server"
810
path = "src/bin/mcp_echo_server.rs"
911

1012
[dependencies]
11-
sacp = { path = "../sacp" }
12-
yopo = { path = "../yopo" }
13+
sacp = { version = "1.1.1", path = "../sacp" }
14+
yopo = { version = "1.2.1", path = "../yopo" }
1315
rmcp = { workspace = true, features = ["server"] }
1416
schemars.workspace = true
1517

src/sacp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ categories = ["development-tools"]
1010

1111
[dependencies]
1212
agent-client-protocol-schema.workspace = true
13-
sacp-derive = { path = "../sacp-derive" }
13+
sacp-derive = { version = "2.0.0", path = "../sacp-derive" }
1414
anyhow.workspace = true
1515
boxfnonce.workspace = true
1616
futures.workspace = true

0 commit comments

Comments
 (0)