fix(build): cargo.toml cleanup (#298)
This commit is contained in:
parent
f5649cae06
commit
ca36901733
6 changed files with 9 additions and 5 deletions
|
|
@ -7,7 +7,7 @@ edition = "2024"
|
|||
publish = false
|
||||
|
||||
[dependencies]
|
||||
rmcp = { path = "../../crates/rmcp", features = [
|
||||
rmcp = { workspace = true, features = [
|
||||
"client",
|
||||
"transport-sse-client",
|
||||
"reqwest",
|
||||
|
|
|
|||
|
|
@ -10,11 +10,12 @@ keywords = { workspace = true }
|
|||
homepage = { workspace = true }
|
||||
categories = { workspace = true }
|
||||
readme = { workspace = true }
|
||||
publish = false
|
||||
|
||||
[dependencies]
|
||||
rig-core = "0.13.0"
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
rmcp = { path = "../../crates/rmcp", features = [
|
||||
rmcp = { workspace = true, features = [
|
||||
"client",
|
||||
"reqwest",
|
||||
"transport-child-process",
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ edition = "2024"
|
|||
publish = false
|
||||
|
||||
[dependencies]
|
||||
rmcp = { path = "../../crates/rmcp", features = [
|
||||
rmcp = { workspace = true, features = [
|
||||
"server",
|
||||
"transport-sse-server",
|
||||
"transport-io",
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
name = "simple-chat-client"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
publish = false
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
|
|
|
|||
|
|
@ -10,12 +10,13 @@ keywords = { workspace = true }
|
|||
homepage = { workspace = true }
|
||||
categories = { workspace = true }
|
||||
readme = { workspace = true }
|
||||
publish = false
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
|
||||
[dependencies]
|
||||
rmcp = { path = "../../crates/rmcp", features = ["server", "client"] }
|
||||
rmcp = { workspace = true, features = ["server", "client"] }
|
||||
tokio = { version = "1", features = [
|
||||
"macros",
|
||||
"rt",
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@ keywords = { workspace = true }
|
|||
homepage = { workspace = true }
|
||||
categories = { workspace = true }
|
||||
readme = { workspace = true }
|
||||
publish = false
|
||||
|
||||
[lib]
|
||||
crate-type = ["cdylib"]
|
||||
|
|
@ -17,7 +18,7 @@ crate-type = ["cdylib"]
|
|||
[dependencies]
|
||||
wasi = { version = "0.14.2"}
|
||||
tokio = { version = "1", features = ["rt", "io-util", "sync", "macros", "time"] }
|
||||
rmcp= { path = "../../crates/rmcp", features = ["server", "macros"] }
|
||||
rmcp = { workspace = true, features = ["server", "macros"] }
|
||||
serde = { version = "1", features = ["derive"]}
|
||||
tracing-subscriber = { version = "0.3", features = [
|
||||
"env-filter",
|
||||
|
|
|
|||
Loading…
Reference in a new issue