Address PR feedback and downgrade editions temporarily
This commit is contained in:
parent
3e3352dd8d
commit
79225a0d30
5 changed files with 16 additions and 12 deletions
|
|
@ -2,8 +2,12 @@
|
|||
members = ["crates/*"]
|
||||
resolver = "2"
|
||||
|
||||
[workspace.dependencies]
|
||||
mcp-core = { path = "./crates/mcp-core" }
|
||||
mcp-macros = { path = "./crates/mcp-macros" }
|
||||
|
||||
[workspace.package]
|
||||
edition = "2024"
|
||||
edition = "2021"
|
||||
version = "1.0.7"
|
||||
authors = ["Block <ai-oss-tools@block.xyz>"]
|
||||
license = "MIT"
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
[package]
|
||||
name = "mcp-client"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
|
||||
[dependencies]
|
||||
mcp-core = { path = "../mcp-core" }
|
||||
mcp-core = { workspace = true }
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
reqwest = { version = "0.11", default-features = false, features = ["json", "stream", "rustls-tls"] }
|
||||
eventsource-client = "0.12.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "mcp-core"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "mcp-macros"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
[package]
|
||||
name = "mcp-server"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.94"
|
||||
thiserror = "1.0"
|
||||
mcp-core = { path = "../mcp-core" }
|
||||
mcp-macros = { path = "../mcp-macros" }
|
||||
mcp-core = { workspace = true }
|
||||
mcp-macros = { workspace = true }
|
||||
serde = { version = "1.0.216", features = ["derive"] }
|
||||
serde_json = "1.0.133"
|
||||
schemars = "0.8"
|
||||
|
|
|
|||
Loading…
Reference in a new issue