SilverSight/scripts/mcp_backend/Cargo.toml
allaun fa8f6a2586 chore: commit utility scripts, MCP backend source, and archived data
Utility scripts:
- download_leanstral.py: HuggingFace model download for autoproof
- download_leanstral_urllib.py: stdlib-only variant
- prime_slos_explore.py: spectral signature exploration for primes

Infrastructure:
- scripts/mcp_backend/: Rust MCP backend (src + Cargo.toml/lock, target/ gitignored)

Data:
- .openresearch/artifacts/slos_checkpoints/: 128K checkpoint data
- archive/dead_code_2026-07-03/: 360K archived dead code
2026-07-04 02:06:51 -05:00

19 lines
No EOL
504 B
TOML

[package]
name = "mcp_backend"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1.35", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
futures = "0.3"
axum = { version = "0.7", optional = true }
hyper = { version = "1.0", optional = true }
tower = { version = "0.4", optional = true }
http-body-util = { version = "0.1", optional = true }
[features]
default = []
http_server = ["axum", "hyper", "tower", "http-body-util"]