2024-08-15 16:31:34 +01:00
|
|
|
workspace = { members = ["scx_stats_derive"] }
|
2024-08-15 23:23:46 +01:00
|
|
|
|
2024-08-14 18:52:39 +01:00
|
|
|
[package]
|
2024-08-15 16:31:34 +01:00
|
|
|
name = "scx_stats"
|
2024-08-14 18:52:39 +01:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-08-15 22:08:42 +01:00
|
|
|
authors = ["Tejun Heo <tj@kernel.org>"]
|
2024-08-15 23:23:46 +01:00
|
|
|
license = "GPL-2.0-only"
|
2024-08-15 22:08:42 +01:00
|
|
|
repository = "https://github.com/sched-ext/scx"
|
|
|
|
description = "Statistics transport library for sched_ext schedulers"
|
2024-08-14 18:52:39 +01:00
|
|
|
|
|
|
|
[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]
|
2024-08-15 16:31:34 +01:00
|
|
|
scx_stats_derive = { path = "scx_stats_derive", version = "0.1.0" }
|
2024-08-15 23:17:30 +01:00
|
|
|
simple_logger = "5.0"
|