mirror of
https://github.com/sched-ext/scx.git
synced 2024-11-30 22:50:23 +00:00
27 lines
928 B
TOML
27 lines
928 B
TOML
[package]
|
|
name = "scx_bpfland"
|
|
version = "1.0.6"
|
|
authors = ["Andrea Righi <andrea.righi@linux.dev>"]
|
|
edition = "2021"
|
|
description = "A vruntime-based sched_ext scheduler that prioritizes interactive workloads. https://github.com/sched-ext/scx/tree/main"
|
|
license = "GPL-2.0-only"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.65"
|
|
ctrlc = { version = "3.1", features = ["termination"] }
|
|
clap = { version = "4.1", features = ["derive", "env", "unicode", "wrap_help"] }
|
|
crossbeam = "0.8.4"
|
|
libbpf-rs = "0.24.1"
|
|
log = "0.4.17"
|
|
scx_stats = { path = "../../../rust/scx_stats", version = "1.0.6" }
|
|
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.6" }
|
|
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.6" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
simplelog = "0.12"
|
|
|
|
[build-dependencies]
|
|
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.6" }
|
|
|
|
[features]
|
|
enable_backtrace = []
|