diff --git a/Cargo.lock b/Cargo.lock index c7828b7c1..871bf2d96 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1745,7 +1745,7 @@ dependencies = [ [[package]] name = "scx_layered" -version = "1.0.6" +version = "1.0.7" dependencies = [ "anyhow", "bitvec", @@ -1907,7 +1907,7 @@ dependencies = [ [[package]] name = "scx_utils" -version = "1.0.6" +version = "1.0.7" dependencies = [ "anyhow", "bindgen", diff --git a/rust/scx_rustland_core/Cargo.toml b/rust/scx_rustland_core/Cargo.toml index 949c30ef7..029c05638 100644 --- a/rust/scx_rustland_core/Cargo.toml +++ b/rust/scx_rustland_core/Cargo.toml @@ -12,12 +12,12 @@ anyhow = "1.0.65" plain = "0.2.3" libbpf-rs = "0.24.1" libc = "0.2.137" -scx_utils = { path = "../scx_utils", version = "1.0.6" } +scx_utils = { path = "../scx_utils", version = "1.0.7" } [build-dependencies] tar = "0.4" walkdir = "2.4" -scx_utils = { path = "../scx_utils", version = "1.0.6" } +scx_utils = { path = "../scx_utils", version = "1.0.7" } [lib] name = "scx_rustland_core" diff --git a/rust/scx_utils/Cargo.toml b/rust/scx_utils/Cargo.toml index 3007e8789..60821f126 100644 --- a/rust/scx_utils/Cargo.toml +++ b/rust/scx_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scx_utils" -version = "1.0.6" +version = "1.0.7" edition = "2021" authors = ["Tejun Heo "] license = "GPL-2.0-only" diff --git a/scheds/rust/scx_bpfland/Cargo.toml b/scheds/rust/scx_bpfland/Cargo.toml index 6c416f7ef..01f78e326 100644 --- a/scheds/rust/scx_bpfland/Cargo.toml +++ b/scheds/rust/scx_bpfland/Cargo.toml @@ -15,12 +15,12 @@ libbpf-rs = "0.24.1" log = "0.4.17" scx_stats = { path = "../../../rust/scx_stats", version = "1.0.6" } scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.6" } -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.6" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.7" } serde = { version = "1.0", features = ["derive"] } simplelog = "0.12" [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.6" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.7" } [features] enable_backtrace = [] diff --git a/scheds/rust/scx_flash/Cargo.toml b/scheds/rust/scx_flash/Cargo.toml index 2aada9ec5..3fcad2c8a 100644 --- a/scheds/rust/scx_flash/Cargo.toml +++ b/scheds/rust/scx_flash/Cargo.toml @@ -15,12 +15,12 @@ libbpf-rs = "0.24.1" log = "0.4.17" scx_stats = { path = "../../../rust/scx_stats", version = "1.0.4" } scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.4" } -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.4" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.7" } serde = { version = "1.0", features = ["derive"] } simplelog = "0.12" [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.4" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.7" } [features] enable_backtrace = [] diff --git a/scheds/rust/scx_lavd/Cargo.toml b/scheds/rust/scx_lavd/Cargo.toml index 9efef6e9b..1ea378f01 100644 --- a/scheds/rust/scx_lavd/Cargo.toml +++ b/scheds/rust/scx_lavd/Cargo.toml @@ -21,7 +21,7 @@ log = "0.4.17" ordered-float = "3.4.0" scx_stats = { path = "../../../rust/scx_stats", version = "1.0.6" } scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.6" } -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.6" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.7" } serde = { version = "1.0", features = ["derive"] } simplelog = "0.12" static_assertions = "1.1.0" @@ -29,7 +29,7 @@ plain = "0.2.3" gpoint = "0.2" [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.6" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.7" } [features] enable_backtrace = [] diff --git a/scheds/rust/scx_layered/Cargo.toml b/scheds/rust/scx_layered/Cargo.toml index e753e1f8c..6524cc405 100644 --- a/scheds/rust/scx_layered/Cargo.toml +++ b/scheds/rust/scx_layered/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scx_layered" -version = "1.0.6" +version = "1.0.7" authors = ["Tejun Heo ", "Meta"] edition = "2021" description = "A highly configurable multi-layer 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" @@ -21,13 +21,13 @@ libc = "0.2.137" log = "0.4.17" scx_stats = { path = "../../../rust/scx_stats", version = "1.0.6" } scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.6" } -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.6" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.7" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" simplelog = "0.12" [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.6" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.7" } [features] enable_backtrace = [] diff --git a/scheds/rust/scx_mitosis/Cargo.toml b/scheds/rust/scx_mitosis/Cargo.toml index 71cd23a9b..47250c5a8 100644 --- a/scheds/rust/scx_mitosis/Cargo.toml +++ b/scheds/rust/scx_mitosis/Cargo.toml @@ -19,13 +19,13 @@ libbpf-rs = "0.24.1" libc = "0.2.137" log = "0.4.17" maplit = "1.0.2" -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.6" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.7" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" simplelog = "0.12" [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.6" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.7" } [features] enable_backtrace = [] diff --git a/scheds/rust/scx_rlfifo/Cargo.toml b/scheds/rust/scx_rlfifo/Cargo.toml index 0d107d3d0..43b9c9295 100644 --- a/scheds/rust/scx_rlfifo/Cargo.toml +++ b/scheds/rust/scx_rlfifo/Cargo.toml @@ -12,11 +12,11 @@ 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.6" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.7" } scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "2.2.3" } [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.6" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.7" } scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "2.2.3" } [features] diff --git a/scheds/rust/scx_rustland/Cargo.toml b/scheds/rust/scx_rustland/Cargo.toml index 6c716bc24..106f9c27f 100644 --- a/scheds/rust/scx_rustland/Cargo.toml +++ b/scheds/rust/scx_rustland/Cargo.toml @@ -19,12 +19,12 @@ ordered-float = "3.4.0" serde = { version = "1.0", features = ["derive"] } scx_stats = { path = "../../../rust/scx_stats", version = "1.0.6" } scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.6" } -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.6" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.7" } scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "2.2.3" } simplelog = "0.12" [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.6" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.7" } scx_rustland_core = { path = "../../../rust/scx_rustland_core", version = "2.2.3" } [features] diff --git a/scheds/rust/scx_rusty/Cargo.toml b/scheds/rust/scx_rusty/Cargo.toml index 9b68dfef6..8f0f755ab 100644 --- a/scheds/rust/scx_rusty/Cargo.toml +++ b/scheds/rust/scx_rusty/Cargo.toml @@ -19,14 +19,14 @@ log = "0.4.17" ordered-float = "3.4.0" scx_stats = { path = "../../../rust/scx_stats", version = "1.0.6" } scx_stats_derive = { path = "../../../rust/scx_stats/scx_stats_derive", version = "1.0.6" } -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.6" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.7" } serde = { version = "1.0", features = ["derive"] } simplelog = "0.12" sorted-vec = "0.8.3" static_assertions = "1.1.0" [build-dependencies] -scx_utils = { path = "../../../rust/scx_utils", version = "1.0.6" } +scx_utils = { path = "../../../rust/scx_utils", version = "1.0.7" } [features] enable_backtrace = []