2023-11-30 23:08:36 +00:00
[ package ]
name = "scx_layered"
2024-09-06 05:11:50 +01:00
version = "1.0.4"
2023-11-30 23:08:36 +00:00
authors = [ "Tejun Heo <htejun@meta.com>" , "Meta" ]
edition = "2021"
2024-01-19 18:04:17 +00:00
description = "A highly configurable multi-layer BPF / user space hybrid scheduler used within 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"
2023-11-30 23:08:36 +00:00
license = "GPL-2.0-only"
[ dependencies ]
2024-08-09 00:26:47 +01:00
anyhow = "1.0.65"
2023-11-30 23:08:36 +00:00
bitvec = "1.0"
2024-08-15 18:42:01 +01:00
chrono = "0.4"
2023-11-30 23:08:36 +00:00
clap = { version = "4.1" , features = [ "derive" , "env" , "unicode" , "wrap_help" ] }
2024-08-19 19:07:25 +01:00
crossbeam = "0.8.4"
2023-11-30 23:08:36 +00:00
ctrlc = { version = "3.1" , features = [ "termination" ] }
fb_procfs = "0.7"
lazy_static = "1.4"
2024-08-09 01:23:37 +01:00
libbpf-rs = "0.24.1"
2024-08-09 00:26:47 +01:00
libc = "0.2.137"
log = "0.4.17"
2024-09-06 05:11:50 +01:00
scx_stats = { path = "../../../rust/scx_stats" , version = "1.0.4" }
scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive" , version = "1.0.4" }
scx_utils = { path = "../../../rust/scx_utils" , version = "1.0.4" }
2023-11-30 23:08:36 +00:00
serde = { version = "1.0" , features = [ "derive" ] }
serde_json = "1.0"
simplelog = "0.12"
[ build-dependencies ]
2024-09-06 05:11:50 +01:00
scx_utils = { path = "../../../rust/scx_utils" , version = "1.0.4" }
2023-11-30 23:08:36 +00:00
[ features ]
enable_backtrace = [ ]