* chore(deps): update p256 requirement from 0.13 to 0.14 Updates the requirements on [p256](https://github.com/RustCrypto/elliptic-curves) to permit the latest version. - [Commits](https://github.com/RustCrypto/elliptic-curves/compare/primeorder/v0.13.0...p256/v0.14.0) --- updated-dependencies: - dependency-name: p256 dependency-version: 0.14.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * fix(conformance): update p256 key parsing --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Dale Seo <5466341+DaleSeo@users.noreply.github.com>
36 lines
867 B
TOML
36 lines
867 B
TOML
[package]
|
|
name = "mcp-conformance"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "conformance-server"
|
|
path = "src/bin/server.rs"
|
|
|
|
[[bin]]
|
|
name = "conformance-client"
|
|
path = "src/bin/client.rs"
|
|
|
|
[dependencies]
|
|
rmcp = { path = "../crates/rmcp", features = [
|
|
"server",
|
|
"client",
|
|
"elicitation",
|
|
"auth",
|
|
"transport-streamable-http-server",
|
|
"transport-streamable-http-client-reqwest",
|
|
] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-util = { version = "0.7" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
axum = { version = "0.8", features = ["macros"] }
|
|
anyhow = "1"
|
|
reqwest = { version = "0.13", features = ["json"] }
|
|
urlencoding = "2"
|
|
url = "2"
|
|
p256 = { version = "0.14", features = ["ecdsa"] }
|
|
base64 = "0.22"
|