mirror of
https://github.com/allaunthefox/SilverSight.git
synced 2026-07-31 01:25:21 +00:00
rust/src/bin/ingest.rs: - Parses $\LaTeX$ equations from .md files (block 602556 and inline $) - Classifies as spectral/braid/cartan/unknown via keyword detection - Density check: pauses at >20 equations or >5 unknowns - Computes spectral fingerprint (σ, τ, ∆, λ_min, λ_max) via character transform - Emits receipt.json with full results - Writes .decision.md for user review when too dense Rust CLI, zero-float spectral computation, serde JSON output. Cargo.toml: added regex + serde dependencies.
14 lines
234 B
TOML
14 lines
234 B
TOML
[package]
|
|
name = "silversight"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
sha2 = "0.10"
|
|
regex = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
[[bin]]
|
|
name = "avm_runner"
|
|
path = "src/bin/avm_runner.rs"
|