mirror of
https://github.com/allaunthefox/SilverSight.git
synced 2026-07-31 01:25:21 +00:00
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
19 lines
No EOL
504 B
TOML
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"] |