mirror of
https://github.com/JakeHillion/scx.git
synced 2024-12-03 22:37:11 +00:00
19 lines
431 B
TOML
19 lines
431 B
TOML
[package]
|
|
name = "scx_stats_derive"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Tejun Heo <tj@kernel.org>"]
|
|
license = "GPL-2.0-only"
|
|
repository = "https://github.com/sched-ext/scx"
|
|
description = "Derive macro for scx_stats"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
scx_stats = { path = "..", version = "0.1.0" }
|
|
serde_json = "1.0"
|
|
syn = { version = "2.0", features = ["extra-traits", "full"] }
|