Skip to content

Commit 7c789be

Browse files
committed
chore(dependencies): update various dependencies across examples and rmcp crate
- Updated `pastey` to version 0.2.2 in `crates/rmcp/Cargo.toml`. - Updated `schemars` to version 1.2 in `crates/rmcp/Cargo.toml` and other examples. - Updated `url` to version 2.5 in `crates/rmcp/Cargo.toml` and examples. - Updated `process-wrap` to version 9.1 in `crates/rmcp/Cargo.toml`. - Updated `chrono` to version 0.4.44 in `crates/rmcp/Cargo.toml` and examples. - Updated `clap` to version 4.6 in multiple examples. - Updated `toml` to version 1.1 in `examples/simple-chat-client/Cargo.toml`. - Updated `wasi` to version 0.14.7 in `examples/wasi/Cargo.toml`. - Updated `uuid` to version 1.23 in `examples/servers/Cargo.toml`.
1 parent ab4ccdb commit 7c789be

6 files changed

Lines changed: 16 additions & 16 deletions

File tree

crates/rmcp/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ futures = "0.3"
5353
tracing = { version = "0.1" }
5454
tokio-util = { version = "0.7" }
5555
pin-project-lite = "0.2"
56-
pastey = { version = "0.2.0", optional = true }
56+
pastey = { version = "0.2.2", optional = true }
5757
# oauth2 support
5858
oauth2 = { version = "5.0", optional = true, default-features = false }
5959
# JWT signing for client credentials (private_key_jwt)
6060
jsonwebtoken = { version = "10", optional = true }
6161

6262
# for auto generate schema
63-
schemars = { version = "1.0", optional = true, features = ["chrono04"] }
63+
schemars = { version = "1.2", optional = true, features = ["chrono04"] }
6464

6565
# for image encoding
6666
base64 = { version = "0.22", optional = true }
@@ -74,13 +74,13 @@ reqwest = { version = "0.13.2", default-features = false, features = [
7474
sse-stream = { version = "0.2", optional = true }
7575

7676
http = { version = "1", optional = true }
77-
url = { version = "2.4", optional = true }
77+
url = { version = "2.5", optional = true }
7878

7979
# For tower compatibility
8080
tower-service = { version = "0.3", optional = true }
8181

8282
# for child process transport
83-
process-wrap = { version = "9.0", features = ["tokio1"], optional = true }
83+
process-wrap = { version = "9.1", features = ["tokio1"], optional = true }
8484

8585
# for cross-platform executable path resolution
8686
which = { version = "8", optional = true }
@@ -103,10 +103,10 @@ hyper-util = { version = "0.1", features = ["tokio"], optional = true }
103103
# macro
104104
rmcp-macros = { workspace = true, optional = true }
105105
[target.'cfg(not(all(target_family = "wasm", target_os = "unknown")))'.dependencies]
106-
chrono = { version = "0.4.38", features = ["serde"] }
106+
chrono = { version = "0.4.44", features = ["serde"] }
107107

108108
[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies]
109-
chrono = { version = "0.4.38", default-features = false, features = [
109+
chrono = { version = "0.4.44", default-features = false, features = [
110110
"serde",
111111
"clock",
112112
"std",
@@ -192,12 +192,12 @@ schemars = ["dep:schemars"]
192192

193193
[dev-dependencies]
194194
tokio = { version = "1", features = ["full"] }
195-
schemars = { version = "1.1.0", features = ["chrono04"] }
195+
schemars = { version = "1.2.1", features = ["chrono04"] }
196196
axum = { version = "0.8", default-features = false, features = ["http1", "tokio"] }
197197
hyper = { version = "1", features = ["server", "http1"] }
198198
hyper-util = { version = "0.1", features = ["tokio"] }
199199
tower-service = "0.3"
200-
url = "2.4"
200+
url = "2.5"
201201
anyhow = "1.0"
202202
tracing-subscriber = { version = "0.3", features = [
203203
"env-filter",

examples/clients/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] }
2323
rand = "0.10"
2424
futures = "0.3"
2525
anyhow = "1.0"
26-
url = "2.4"
26+
url = "2.5"
2727
tower = "0.5"
2828
axum = "0.8"
2929
reqwest = "0.13.2"
30-
clap = { version = "4.0", features = ["derive"] }
30+
clap = { version = "4.6", features = ["derive"] }
3131

3232
[[example]]
3333
name = "clients_git_stdio"

examples/servers/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ tracing-subscriber = { version = "0.3", features = [
3434
futures = "0.3"
3535
rand = { version = "0.10", features = ["std"] }
3636
axum = { version = "0.8", features = ["macros"] }
37-
schemars = "1.0"
37+
schemars = "1.2"
3838
reqwest = { version = "0.13.2", features = ["json"] }
3939
chrono = "0.4"
40-
uuid = { version = "1.6", features = ["v4", "serde"] }
40+
uuid = { version = "1.23", features = ["v4", "serde"] }
4141
serde_urlencoded = "0.7"
4242
askama = { version = "0.15" }
4343
tower-http = { version = "0.6", features = ["cors"] }

examples/simple-chat-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ anyhow = "1.0"
1313
thiserror = "2.0"
1414
async-trait = "0.1"
1515
futures = "0.3"
16-
toml = "1.0"
16+
toml = "1.1"
1717
rmcp = { workspace = true, features = [
1818
"client",
1919
"transport-child-process",
2020
"transport-streamable-http-client-reqwest"
2121
] }
22-
clap = { version = "4.0", features = ["derive"] }
22+
clap = { version = "4.6", features = ["derive"] }

examples/transport/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ tracing-subscriber = { version = "0.3", features = [
3737
] }
3838
futures = "0.3"
3939
rand = { version = "0.10" }
40-
schemars = { version = "1.0", optional = true }
40+
schemars = { version = "1.2", optional = true }
4141
hyper = { version = "1", features = ["client", "server", "http1"] }
4242
hyper-util = { version = "0.1", features = ["tokio"] }
4343
tokio-tungstenite = "0.29.0"

examples/wasi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ publish = false
1616
crate-type = ["cdylib"]
1717

1818
[dependencies]
19-
wasi = { version = "0.14.2"}
19+
wasi = { version = "0.14.7"}
2020
tokio = { version = "1", features = ["rt", "io-util", "sync", "macros", "time"] }
2121
rmcp = { workspace = true, features = ["server", "macros"] }
2222
serde = { version = "1", features = ["derive"]}

0 commit comments

Comments
 (0)