scx-upstream/scheds/rust/scx_rlfifo/Cargo.toml
Daniel Müller 565aec3662 rust: Update libbpf-rs & libbpf-cargo to 0.24
Update libbpf-rs & libbpf-cargo to 0.24. Among other things, generated
skeletons now contain directly accessible map and program objects, no
longer necessitating the use of accessor methods. As a result, the risk
for mutability conflicts is reduced greatly.

Signed-off-by: Daniel Müller <deso@posteo.net>
2024-07-16 11:48:52 -07:00

24 lines
716 B
TOML

[package]
name = "scx_rlfifo"
version = "1.0.1"
authors = ["Andrea Righi <andrea.righi@linux.dev>"]
edition = "2021"
description = "A simple FIFO scheduler in Rust that runs in user-space"
license = "GPL-2.0-only"
[dependencies]
anyhow = "1.0.65"
plain = "0.2.3"
ctrlc = { version = "3.1", features = ["termination"] }
libbpf-rs = "0.24"
libc = "0.2.137"
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.1" }
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "1.0.1" }
[build-dependencies]
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.1" }
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "1.0.1" }
[features]
enable_backtrace = []