forked from IBM/mcp-context-forge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (63 loc) · 1.73 KB
/
Cargo.toml
File metadata and controls
71 lines (63 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[workspace]
resolver = "3"
# Workspace policy: repo-owned crates that participate in the shared Rust
# workspace live under crates/. Keep the glob so new workspace-owned crates are
# included automatically from the repo root.
members = [
"crates/*",
]
default-members = [
"crates/*",
]
[workspace.package]
version = "1.0.0-BETA-3"
edition = "2024"
rust-version = "1.85"
authors = ["ContextForge Contributors"]
license = "Apache-2.0"
repository = "https://github.com/IBM/mcp-context-forge"
[workspace.dependencies]
anyhow = "1.0"
axum = "0.8.9"
base64 = "0.22.1"
bytes = "1.11.1"
clap = { version = "4.5.60", features = ["derive", "env"] }
futures = "0.3.31"
futures-util = "0.3.31"
# PyO3 for Python bindings
pyo3 = { version = "0.28.2", features = ["abi3-py311"] }
pyo3-log = "0.13.3"
pyo3-stub-gen = "0.19"
rand = "0.8"
redis = { version = "0.32.7", features = ["aio", "tokio-comp", "connection-manager"] }
regex = "1.12.2"
rmcp = { version = "=1.2.0", default-features = false }
sha2 = "0.10.9"
# HTTP client (native-tls to avoid CDLA-Permissive-2.0 from rustls-platform-verifier)
reqwest = { version = "0.12.28", default-features = false, features = [
"json",
"stream",
"http2",
"rustls-tls-native-roots",
] }
# Async runtime
tokio = { version = "1.49", features = ["full"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0.16"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
url = "2.5.7"
uuid = { version = "=1.23.0", features = ["v4"] }
[workspace.lints.clippy]
multiple_crate_versions = "allow"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = true
panic = "abort"
[profile.bench]
inherits = "release"
debug = true