mirror of
https://github.com/sched-ext/scx.git
synced 2024-11-28 21:50:23 +00:00
37 lines
1.4 KiB
TOML
37 lines
1.4 KiB
TOML
[package]
|
|
name = "scx_lavd"
|
|
version = "0.1.0"
|
|
authors = ["Changwoo Min <changwoo@igalia.com>", "Igalia"]
|
|
edition = "2021"
|
|
description = "A Latency-criticality Aware Virtual Deadline (LAVD) scheduler based on sched_ext, which is a Linux kernel feature which enables implementing kernel thread schedulers in BPF and dynamically loading them. https://github.com/sched-ext/scx/tree/main"
|
|
license = "GPL-2.0-only"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.65"
|
|
bitvec = { version = "1.0", features = ["serde"] }
|
|
clap = { version = "4.1", features = ["derive", "env", "unicode", "wrap_help"] }
|
|
ctrlc = { version = "3.1", features = ["termination"] }
|
|
fb_procfs = "0.7.0"
|
|
hex = "0.4.3"
|
|
libbpf-rs = "0.22"
|
|
libc = "0.2.137"
|
|
log = "0.4.17"
|
|
ordered-float = "3.4.0"
|
|
scx_utils = { path = "../../../rust/scx_utils", version = "0.6" }
|
|
simplelog = "0.12.0"
|
|
static_assertions = "1.1.0"
|
|
rlimit = "0.10.1"
|
|
plain = "0.2.3"
|
|
nix = "0.28.0"
|
|
|
|
[build-dependencies]
|
|
scx_utils = { path = "../../../rust/scx_utils", version = "0.6" }
|
|
|
|
[features]
|
|
enable_backtrace = []
|
|
|
|
[patch.crates-io]
|
|
libbpf-sys = { git = "https://github.com/libbpf/libbpf-sys.git", rev = "125444300e2db452131dd6453101599c1a277784" }
|
|
libbpf-rs = { git = "https://github.com/libbpf/libbpf-rs.git", rev = "7745f2e43c2bde59920b8b7400d62f66b906f05b" }
|
|
libbpf-cargo = { git = "https://github.com/libbpf/libbpf-rs.git", rev = "7745f2e43c2bde59920b8b7400d62f66b906f05b" }
|