dependency updates, fix changed method name, add base64

This commit is contained in:
2025-03-07 01:41:27 +01:00
parent bd46188d6e
commit de0deaa638
10 changed files with 2166 additions and 1120 deletions

View File

@ -6,25 +6,25 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
console-api = "0.3"
prost-types = "0.10"
console-api = "0.3.0"
prost-types = "0.10.1"
tonic = { version = "0.7.2", default-features = false, features = [] }
hyper = { version = "0.14", default-features = false, features = ["http2", "server", "stream"] }
thread_local = "1.1"
tracing = "0.1"
tracing-core = "0.1"
tracing-subscriber = { version = "0.3", default-features = false, features = ["registry"] }
crossbeam-utils = "0.8"
crossbeam-channel = "0.5"
async-net = "1.6"
async-compat = "0.2"
async-channel = "1.6"
async-oneshot = "0.5"
async-io = "1.7"
tokio-util = "0.7"
futures-util = "0.3"
tokio = { version = "1.19", default-features = false, features = []}
hdrhistogram = "7.5"
hyper = { version = "0.14.32", default-features = false, features = ["http2", "server", "stream"] }
thread_local = "1.1.8"
tracing = "0.1.41"
tracing-core = "0.1.33"
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["registry"] }
crossbeam-utils = "0.8.21"
crossbeam-channel = "0.5.14"
async-net = "2.0.0"
async-compat = "0.2.4"
async-channel = "1.9.0"
async-oneshot = "0.5.9"
async-io = "2.4.0"
tokio-util = "0.7.13"
futures-util = "0.3.31"
tokio = { version = "1.43.0", default-features = false, features = []}
hdrhistogram = "7.5.4"
[dev-dependencies]
tracing-subscriber = "0.3"
tracing-subscriber = "0.3.19"

View File

@ -31,34 +31,34 @@ path = "benches/stats.rs"
[dependencies]
lightproc = { path = "../lightproc" }
crossbeam-utils = "0.8"
crossbeam-channel = "0.5"
crossbeam-epoch = "0.9"
crossbeam-deque = "0.8.1"
lazy_static = "1.4"
libc = "0.2"
num_cpus = "1.13"
crossbeam-utils = "0.8.21"
crossbeam-channel = "0.5.14"
crossbeam-epoch = "0.9.18"
crossbeam-deque = "0.8.6"
lazy_static = "1.5.0"
libc = "0.2.169"
num_cpus = "1.16.0"
pin-utils = "0.1.0"
parking_lot = "0.12"
parking_lot = "0.12.3"
# Allocator
arrayvec = { version = "0.7.0" }
futures-timer = "3.0.2"
once_cell = "1.4.0"
crossbeam-queue = "0.3.0"
hdrhistogram = "7.5"
arrayvec = { version = "0.7.6" }
futures-timer = "3.0.3"
once_cell = "1.20.3"
crossbeam-queue = "0.3.12"
hdrhistogram = "7.5.4"
# Stats & Tracing
tracing = "0.1"
tracing = "0.1.41"
# Supervision trees
sharded-slab = "0.1"
thread_local = "1.1"
sharded-slab = "0.1.7"
thread_local = "1.1.8"
[dev-dependencies]
async-std = "1.10.0"
tracing = { version = "0.1.19", features = ["max_level_trace"]}
tracing-subscriber = "0.3.1"
futures-util = "0.3"
rand = "0.8"
criterion = "0.3"
tracing = { version = "0.1.41", features = ["max_level_trace"]}
tracing-subscriber = "0.3.19"
futures-util = "0.3.31"
rand = "0.9.0"
criterion = "0.5.1"

View File

@ -11,14 +11,14 @@ license = "Apache-2.0/MIT"
edition = "2021"
[dependencies]
crossbeam-utils = "0.8"
crossbeam-utils = "0.8.21"
pin-utils = "0.1.0"
bitfield = "0.13.2"
bitfield = "0.18.1"
bitflags = "1.3.2"
tracing = "0.1"
tracing = "0.1.41"
[dev-dependencies]
crossbeam = "0.8"
futures-executor = "0.3"
lazy_static = "1.4.0"
async-std = "1.5"
crossbeam = "0.8.4"
futures-executor = "0.3.31"
lazy_static = "1.5.0"
async-std = "1.13.0"