2023-11-30 23:08:36 +00:00
[ package ]
name = "scx_rusty"
2024-01-25 19:01:23 +00:00
version = "0.5.4"
2023-11-30 23:08:36 +00:00
authors = [ "Dan Schatzberg <dschatzberg@meta.com>" , "Meta" ]
edition = "2021"
2024-01-19 18:04:17 +00:00
description = "A multi-domain, 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 ]
anyhow = "1.0.65"
clap = { version = "4.1" , features = [ "derive" , "env" , "unicode" , "wrap_help" ] }
ctrlc = { version = "3.1" , features = [ "termination" ] }
fb_procfs = "0.7.0"
2023-12-14 22:33:58 +00:00
libbpf-rs = "0.22.0"
2023-11-30 23:08:36 +00:00
libc = "0.2.137"
log = "0.4.17"
ordered-float = "3.4.0"
2024-01-25 19:01:23 +00:00
scx_utils = { path = "../../../rust/scx_utils" , version = "0.6" }
2023-11-30 23:08:36 +00:00
simplelog = "0.12.0"
2024-01-16 17:07:35 +00:00
static_assertions = "1.1.0"
2023-11-30 23:08:36 +00:00
[ build-dependencies ]
2024-01-25 19:01:23 +00:00
scx_utils = { path = "../../../rust/scx_utils" , version = "0.6" }
2023-11-30 23:08:36 +00:00
[ features ]
enable_backtrace = [ ]