mirror of
https://github.com/JakeHillion/scx.git
synced 2024-12-03 22:37:11 +00:00
32 lines
698 B
TOML
32 lines
698 B
TOML
[package]
|
|
name = "scx_rustland_core"
|
|
version = "0.5.0"
|
|
edition = "2021"
|
|
authors = ["Andrea Righi <andrea.righi@canonical.com>"]
|
|
license = "GPL-2.0-only"
|
|
repository = "https://github.com/sched-ext/scx"
|
|
description = "Framework to implement sched_ext schedulers running in user space"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
plain = "0.2.3"
|
|
libbpf-rs = "0.23.1"
|
|
libc = "0.2.137"
|
|
buddy-alloc = "0.5.1"
|
|
scx_utils = { path = "../scx_utils", version = "0.8.1" }
|
|
|
|
[build-dependencies]
|
|
tar = "0.4"
|
|
walkdir = "2.4"
|
|
scx_utils = { path = "../scx_utils", version = "0.8.1" }
|
|
|
|
[lib]
|
|
name = "scx_rustland_core"
|
|
path = "src/lib.rs"
|
|
|
|
include = [
|
|
"assets/bpf/intf.h",
|
|
"assets/bpf/main.bpf.c",
|
|
"assets/bpf.rs",
|
|
]
|