Skip to content

Commit 0186de2

Browse files
committed
chore(deps): bump pastey, reqwest, chrono, tower-http
1 parent 54516e2 commit 0186de2

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

crates/rmcp/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ 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.2", optional = true }
56+
pastey = { version = "0.2.3", optional = true }
5757
# oauth2 support
5858
oauth2 = { version = "5.0", optional = true, default-features = false }
5959
# JWT signing for client credentials (private_key_jwt)
@@ -66,7 +66,7 @@ schemars = { version = "1.2", optional = true, features = ["chrono04"] }
6666
base64 = { version = "0.22", optional = true }
6767

6868
# for HTTP client
69-
reqwest = { version = "0.13.3", default-features = false, features = [
69+
reqwest = { version = "0.13.4", default-features = false, features = [
7070
"json",
7171
"stream",
7272
], optional = true }
@@ -102,10 +102,10 @@ hyper-util = { version = "0.1", features = ["tokio"], optional = true }
102102
# macro
103103
rmcp-macros = { workspace = true, optional = true }
104104
[target.'cfg(not(all(target_family = "wasm", target_os = "unknown")))'.dependencies]
105-
chrono = { version = "0.4.44", default-features = false, features = ["serde", "now"] }
105+
chrono = { version = "0.4.45", default-features = false, features = ["serde", "now"] }
106106

107107
[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies]
108-
chrono = { version = "0.4.44", default-features = false, features = [
108+
chrono = { version = "0.4.45", default-features = false, features = [
109109
"serde",
110110
"clock",
111111
"std",

examples/clients/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ tracing = "0.1"
2222
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
2323
anyhow = "1.0"
2424
axum = "0.8"
25-
reqwest = "0.13.3"
25+
reqwest = "0.13.4"
2626
clap = { version = "4.6", features = ["derive"] }
2727

2828
[[example]]

examples/servers/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ futures = "0.3"
3535
rand = { version = "0.10", features = ["std"] }
3636
axum = { version = "0.8", features = ["macros"] }
3737
schemars = "1.2"
38-
reqwest = { version = "0.13.3", features = ["json"] }
38+
reqwest = { version = "0.13.4", features = ["json"] }
3939
chrono = "0.4"
4040
uuid = { version = "1.23", features = ["v4", "serde"] }
4141
serde_urlencoded = "0.7"
4242
askama = { version = "0.16" }
43-
tower-http = { version = "0.6", features = ["cors"] }
43+
tower-http = { version = "0.7", features = ["cors"] }
4444
hyper-util = { version = "0", features = ["server"] }
4545
tokio-util = { version = "0.7" }
4646
url = "2.5"

examples/simple-chat-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish = false
88
tokio = { version = "1", features = ["full"] }
99
serde = { version = "1.0", features = ["derive"] }
1010
serde_json = "1.0"
11-
reqwest = { version = "0.13.3", features = ["json"] }
11+
reqwest = { version = "0.13.4", features = ["json"] }
1212
anyhow = "1.0"
1313
async-trait = "0.1"
1414
toml = "1.1"

0 commit comments

Comments
 (0)