scx/scheds/rust/scx_rlfifo/Cargo.toml
Andrea Righi ed879bae28 scx_rustland_core: expose enq_flags to user-space
Pass the enqueue flags to the user-space scheduler through the
QueuedTask struct.

These flags allow the user-space scheduler to make more informed
scheduling decisions.

Also bump up scx_rustland_core minor version to reflect the new API (we
are not breaking the old API, so we don't need to bump the major version
in this case).

Signed-off-by: Andrea Righi <andrea.righi@linux.dev>
2024-09-06 11:25:24 +02:00

24 lines
718 B
TOML

[package]
name = "scx_rlfifo"
version = "1.0.4"
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.1"
libc = "0.2.137"
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.4" }
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "2.1.1" }
[build-dependencies]
scx_utils = { path = "../../../rust/scx_utils", version = "1.0.4" }
scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "2.1.1" }
[features]
enable_backtrace = []