mirror of
https://github.com/JakeHillion/scx.git
synced 2024-11-30 04:50:24 +00:00
e9a9d32ab6
- combine c and kernel-examples as it's confusing to have both - rename 'rust-user' and 'c-user' to just 'rust' and 'c', which is simpler - update and fix sync-to-kernel.sh
29 lines
737 B
TOML
29 lines
737 B
TOML
[package]
|
|
name = "scx_layered"
|
|
version = "0.0.2"
|
|
authors = ["Tejun Heo <htejun@meta.com>", "Meta"]
|
|
edition = "2021"
|
|
description = "Userspace scheduling with BPF for Ads"
|
|
license = "GPL-2.0-only"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
bitvec = "1.0"
|
|
clap = { version = "4.1", features = ["derive", "env", "unicode", "wrap_help"] }
|
|
ctrlc = { version = "3.1", features = ["termination"] }
|
|
fb_procfs = "0.7"
|
|
lazy_static = "1.4"
|
|
libbpf-rs = "0.22"
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
scx_utils = { path = "../../../rust/scx_utils", version = "0.4" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
simplelog = "0.12"
|
|
|
|
[build-dependencies]
|
|
scx_utils = { path = "../../../rust/scx_utils", version = "0.4" }
|
|
|
|
[features]
|
|
enable_backtrace = []
|