scx/rust/scx_stats/Cargo.toml
Tejun Heo d037fcd223 scx_stats: Drop version from Cargo.toml::dev-dependencies
Otherwise, the cyclic dependency prevents publishing.
2024-08-15 12:26:17 -10:00

24 lines
589 B
TOML

workspace = { members = ["scx_stats_derive"] }
[package]
name = "scx_stats"
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 = "Statistics transport library for sched_ext schedulers"
[dependencies]
anyhow = "1.0"
libc = "0.2"
log = "0.4"
quote = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
syn = { version = "2.0", features = ["extra-traits", "full"] }
[dev-dependencies]
scx_stats_derive = { path = "scx_stats_derive" }
simple_logger = "5.0"