mirror of
https://github.com/JakeHillion/scx.git
synced 2024-12-02 05:47:12 +00:00
26 lines
786 B
TOML
26 lines
786 B
TOML
[package]
|
|
name = "scx_bpfland"
|
|
version = "1.0.2"
|
|
authors = ["Andrea Righi <righi.andrea@gmail.com>", "Canonical"]
|
|
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"] }
|
|
libbpf-rs = "0.24.1"
|
|
log = "0.4.17"
|
|
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.2" }
|
|
simplelog = "0.12"
|
|
rlimit = "0.10.1"
|
|
metrics = "0.23.0"
|
|
metrics-exporter-prometheus = "0.15.0"
|
|
|
|
[build-dependencies]
|
|
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.2" }
|
|
|
|
[features]
|
|
enable_backtrace = []
|