22 lines
647 B
TOML
22 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 }
|