The milestone-1 multi-crate representation stack overshot the goal. Move it to archive/overcomplicated/ to keep for reference, and bring the original single-package cstat back to /workspace as the active codebase. Also commit demo_glossary.rs and ignore the build binary plus .loop/.stash/. Authored by Claude, lovingly guided by Zachery Aaron Shores-Chmielewski
16 lines
398 B
TOML
16 lines
398 B
TOML
[package]
|
|
name = "cstat-extract-rustc"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Nightly rustc_driver-driven extractor (out-of-process). Pinned via rust-toolchain.toml."
|
|
|
|
[[bin]]
|
|
name = "cstat-extract-rustc"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
cstat-ir = { path = "../cstat-ir" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
toml = "0.8"
|