2024-03-16 01:31:07 +00:00
[ package ]
name = "scx_lavd"
2024-08-21 17:42:11 +01:00
version = "1.0.3"
2024-03-16 01:31:07 +00:00
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" ] }
2024-08-24 05:17:34 +01:00
crossbeam = "0.8.4"
2024-03-16 01:31:07 +00:00
ctrlc = { version = "3.1" , features = [ "termination" ] }
2024-08-09 00:26:47 +01:00
fb_procfs = "0.7"
2024-03-16 01:31:07 +00:00
hex = "0.4.3"
2024-08-20 01:19:46 +01:00
itertools = "0.13.0"
2024-08-09 01:23:37 +01:00
libbpf-rs = "0.24.1"
2024-03-16 01:31:07 +00:00
libc = "0.2.137"
log = "0.4.17"
ordered-float = "3.4.0"
2024-08-24 05:17:34 +01:00
scx_stats = { path = "../../../rust/scx_stats" , version = "1.0.3" }
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive" , version = "1.0.3" }
2024-08-21 17:42:11 +01:00
scx_utils = { path = "../../../rust/scx_utils" , version = "1.0.3" }
2024-08-24 05:17:34 +01:00
serde = { version = "1.0" , features = [ "derive" ] }
2024-08-09 00:26:47 +01:00
simplelog = "0.12"
2024-03-16 01:31:07 +00:00
static_assertions = "1.1.0"
rlimit = "0.10.1"
plain = "0.2.3"
[ build-dependencies ]
2024-08-21 17:42:11 +01:00
scx_utils = { path = "../../../rust/scx_utils" , version = "1.0.3" }
2024-03-16 01:31:07 +00:00
[ features ]
enable_backtrace = [ ]