Skip to content

Commit c72d252

Browse files
authored
feat: set default schema version to 2024_11_05 (#64)
* feat: support 2025-03-26 * feat: update default schema version to 2024_11_05
1 parent 10aca90 commit c72d252

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ edition = "2021"
1414
path = "src/rust-mcp-schema.rs"
1515

1616
[dependencies]
17-
serde = { version = "1.0", features = ["derive"] }
18-
serde_json = { version = "1.0" }
17+
serde = { version = "1.0.219", features = ["derive"] }
18+
serde_json = { version = "1.0.140" }
1919

2020

2121
[dev-dependencies]
@@ -24,19 +24,19 @@ json5 = { version = "0.4" }
2424

2525

2626
[package.metadata.docs.rs]
27-
features = ["latest", "schema_utils"]
27+
features = ["2024_11_05", "schema_utils"]
2828
rustdoc-args = ["--generate-link-to-definition"]
2929

3030
[package.metadata.playground]
31-
features = ["latest", "schema_utils"]
31+
features = ["2024_11_05", "schema_utils"]
3232

3333
### FEATURES #################################################################
3434

3535
# Features to enable different schema versions and associated schema_utils
3636
[features]
3737

3838
# defalt features
39-
default = ["latest", "schema_utils"] # Default features
39+
default = ["2024_11_05", "schema_utils"] # Default features
4040

4141
# activates the latest MCP schema version, this will be updated once a new version of schema is published
4242
latest = ["2025_03_26"]

0 commit comments

Comments
 (0)