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
21 lines
647 B
TOML
21 lines
647 B
TOML
[package]
|
|
name = "cstat-extract-stable"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Stable-Rust Level implementations (no rustc internals)."
|
|
|
|
[dependencies]
|
|
cstat-schema = { path = "../cstat-schema" }
|
|
cstat-ir = { path = "../cstat-ir" }
|
|
cstat-orchestrate = { path = "../cstat-orchestrate" }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
walkdir = { workspace = true }
|
|
proc-macro2 = { workspace = true }
|
|
syn = { workspace = true }
|
|
quote = { workspace = true }
|
|
toml = { workspace = true }
|
|
object = { workspace = true }
|
|
gimli = { workspace = true }
|
|
rustc-demangle = { workspace = true }
|