mirror of
https://github.com/JakeHillion/scx.git
synced 2024-11-29 20:50:22 +00:00
28 lines
1.0 KiB
TOML
28 lines
1.0 KiB
TOML
[package]
|
|
name = "scx_rlfifo"
|
|
version = "0.0.1"
|
|
authors = ["Andrea Righi <andrea.righi@canonical.com>", "Canonical"]
|
|
edition = "2021"
|
|
description = "A simple FIFO scheduler in Rust that runs in user-space"
|
|
license = "GPL-2.0-only"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.65"
|
|
ctrlc = { version = "3.1", features = ["termination"] }
|
|
libbpf-rs = "0.22"
|
|
libc = "0.2.137"
|
|
scx_utils = { path = "../../../rust/scx_utils", version = "0.6" }
|
|
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "0.1" }
|
|
|
|
[build-dependencies]
|
|
scx_utils = { path = "../../../rust/scx_utils", version = "0.6" }
|
|
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "0.1" }
|
|
|
|
[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" }
|