Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
533 changes: 390 additions & 143 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ bytes = "1.11.1"
derive_more = { version = "2.1.1", features = ["full"] }
futures-lite = "2.6.1"
more-asserts = "0.3.1"
rand = "0.9"
rand = "0.10"
serde = { version = "1", features = ["derive"] }
# str0m = { git = "https://github.com/PulseBeamDev/str0m.git", branch = "patch/0.16.2" }
# str0m = { git = "https://github.com/algesten/str0m.git", rev = "a236b94be5d3cf7a56f596fc8a4da252bb8fa93b" }
# str0m = { path = "../str0m" }
str0m = { version = "0.16.2" }
str0m = { version = "0.18.0" }
thiserror = "2.0"
tokio = { version = "1", features = ["full", "test-util", "tracing"] }
tokio-util = "0.7.17"
Expand Down
2 changes: 1 addition & 1 deletion pulsebeam-agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ tokio = { workspace = true }
metrics = "0.24.3"
http = "1.4.0"
tokio-stream = "0.1.17"
if-addrs = "0.14.0"
if-addrs = "0.15.0"
pulsebeam-core = { path = "../pulsebeam-core" }
pulsebeam-proto = { path = "../pulsebeam-proto" }

4 changes: 2 additions & 2 deletions pulsebeam-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ publish = false

[dependencies]
anyhow.workspace = true
clap = { version = "4.5.59", features = ["derive"] }
clap = { version = "4.6.0", features = ["derive"] }
mimalloc = { version = "0.1.48", features = ["v3"] }
pulsebeam-agent = { path = "../pulsebeam-agent" }
pulsebeam-core = { path = "../pulsebeam-core", features = ["reqwest"] }
pulsebeam-testdata = { path = "../pulsebeam-testdata" }
rand.workspace = true
reqwest = "0.13.1"
reqwest = "0.13.2"
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
2 changes: 1 addition & 1 deletion pulsebeam-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ http = { version = "^1" }

axum = { version = "^0.8", optional = true }
turmoil = { workspace = true, optional = true }
reqwest = { version = "0.13.1", optional = true }
reqwest = { version = "0.13.2", optional = true }
14 changes: 7 additions & 7 deletions pulsebeam-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,26 +26,26 @@ diatomic-waker = "0.2"
event-listener = "5.4.1"
futures = "0.3.32"
futures-lite = { workspace = true }
libc = "0.2.182"
libc = "0.2.184"
loom = { version = "0.7", features = ["checkpoint", "futures"], optional = true }
metrics = "0.24.3"
once_cell = "1.21.3"
once_cell = "1.21.4"
parking_lot = { version = "0.12", optional = true }
pulsebeam-core = { path = "../pulsebeam-core" }
quinn-udp = "0.5.14"
quinn-udp = "0.6.1"
rand = { workspace = true }
socket2 = "0.6.1"
systemstat = "0.2.5"
socket2 = "0.6.3"
systemstat = "0.2.6"
thiserror = { workspace = true }
tokio = { workspace = true }
tokio-metrics = { version = "0.4.6", features = ["metrics-rs-integration"] }
tokio-metrics = { version = "0.4.9", features = ["metrics-rs-integration"] }
tokio-util = "0.7.17"
tracing = { workspace = true }
triomphe = { workspace = true }

[dev-dependencies]
async-stream = "0.3.6"
criterion = { version = "0.8.1", features = ["async", "async_tokio"] }
criterion = { version = "0.8.2", features = ["async", "async_tokio"] }
futures-concurrency = "7.6.3"
futures-test = "0.3.32"

Expand Down
8 changes: 4 additions & 4 deletions pulsebeam-simulator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ http = "1.4.0"
http-body-util = "0.1" # Crucial for .collect().await
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["client-legacy", "http1"] }
pin-project-lite = "0.2.16"
proptest = "1.9.0"
pin-project-lite = "0.2.17"
proptest = "1.11.0"
pulsebeam = { path = "../pulsebeam" }
pulsebeam-agent = { path = "../pulsebeam-agent" }
pulsebeam-core = { path = "../pulsebeam-core", features = ["sim"] }
pulsebeam-runtime = { path = "../pulsebeam-runtime" }
pulsebeam-testdata = { path = "../pulsebeam-testdata" }
reqwest = "0.13.1"
reqwest = "0.13.2"
tokio.workspace = true
tokio-util.workspace = true
tower = { version = "0.5.2", features = ["util"] }
tracing.workspace = true
tracing-subscriber = "0.3.22"
tracing-subscriber = "0.3.23"
turmoil.workspace = true

[features]
Expand Down
14 changes: 7 additions & 7 deletions pulsebeam/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ axum = { version = "0.8.8", features = ["macros"] }
axum-extra = { version = "0.12.5", features = ["typed-header"] }
base32 = "0.5.1"
bytes = { workspace = true }
clap = { version = "4.5.57", features = ["derive"] }
clap = { version = "4.6.0", features = ["derive"] }
console-subscriber = { version = "0.5", optional = true }
derive_more = { workspace = true }
futures-concurrency = "7.7.1"
futures-lite = { workspace = true }
futures-util = "0.3.32"
hyper = "1.7.0"
hyper = "1.9.0"
metrics = "0.24.3"
metrics-exporter-prometheus = "0.18.1"
once_cell = "1.21.3"
once_cell = "1.21.4"
pin-project = "1"
pprof = { version = "0.15.0", features = [
"flamegraph",
Expand All @@ -42,7 +42,7 @@ sha3 = "0.10.8"
str0m = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
tokio-metrics = { version = "0.4.6", features = ["metrics-rs-integration", "rt"] }
tokio-metrics = { version = "0.4.9", features = ["metrics-rs-integration", "rt"] }
tokio-stream = { version = "0.1.17", features = ["sync"] }
tokio-util = { workspace = true }
tower-http = { version = "0.6.8", features = [
Expand All @@ -56,15 +56,15 @@ tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
url = "2.5.8"
utoipa = { version = "5.4.0", features = ["axum_extras", "uuid"] }
utoipa-swagger-ui = { version = "9.0.2", features = ["axum"] }
uuid = { version = "1.20.0", features = ["v4", "v5", "v7"] }
uuid = { version = "1.23.0", features = ["v4", "v5", "v7"] }

[dev-dependencies]
hex = "0.4.3"
more-asserts = { workspace = true }
proptest = "1.10.0"
proptest = "1.11.0"

[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemalloc_pprof = { version = "0.8.1", features = ["flamegraph", "symbolize"] }
jemalloc_pprof = { version = "0.8.2", features = ["flamegraph", "symbolize"] }
tikv-jemallocator = { version = "0.6.0", features = [
"disable_initial_exec_tls",
"profiling",
Expand Down
Loading