Skip to content
Closed
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
1,274 changes: 679 additions & 595 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ description = "Performance and Stability Diagnostic Tool for AI Applications"

[workspace.dependencies]
anyhow = "1.0"
arrow = { version = "58.3.0", default-features = false, features = ["csv"] }
arrow = { version = "59.1.0", default-features = false, features = ["csv"] }
datafusion = { version = "54.0.0", default-features = false, features = [
"datetime_expressions",
"sql",
"regex_expressions",
"string_expressions",
] }
chrono = { version = "0.4", features = ["serde"] }
ctor = { version = "0.4.1", features = [] }
ctor = { version = "1.0.9", features = [] }
env_logger = { version = "0.11.6", default-features = false, features = [
"humantime",
] }
Expand All @@ -75,7 +75,7 @@ tokio = { version = "1.52.3", default-features = false, features = [
"rt-multi-thread",
] }
ureq = { version = "3.3", default-features = false, features = ["json", "rustls"] }
criterion = { version = "0.6.0", features = ["html_reports"] }
criterion = { version = "0.8.2", features = ["html_reports"] }

[package]
name = "probing"
Expand Down
14 changes: 7 additions & 7 deletions probing/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ once_cell = { version = "1.21.3" }
http-body-util = { version = "0.1" }
hyper = { version = "1.3.1", features = ["client", "http1"] }
hyper-util = { version = "0.1", features = ["client", "http1", "tokio"] }
libloading = "0.8.3"
tabled = { version = "0.20.0", default-features = false, features = ["macros"] }
libloading = "0.9.0"
tabled = { version = "0.21.0", default-features = false, features = ["macros"] }
libc = "0.2.176"
tokio-tungstenite = { version = "0.28.0", features = ["rustls"] }
reedline = "0.43.0"
tokio-tungstenite = { version = "0.29.0", features = ["rustls"] }
reedline = "0.49.0"
futures-util = "0.3"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
Expand All @@ -56,8 +56,8 @@ version = "4.5.38"
features = ["derive", "env", "unicode", "unstable-markdown"]

[target.'cfg(target_os = "linux")'.dependencies]
pete = "0.12.0"
procfs = { version = "0.17.0", default-features = false, features = ["chrono"] }
pete = "0.13.0"
procfs = { version = "0.18.0", default-features = false, features = ["chrono"] }

[build-dependencies]
vergen = { version = "9.0.0", features = ["build", "cargo", "rustc"] }
vergen = { version = "10.0.1", features = ["build", "cargo", "rustc"] }
2 changes: 1 addition & 1 deletion probing/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ datafusion = { workspace = true }
futures = "0.3.31"
ureq = { workspace = true }
sled = "0.34.7"
bincode = "1.3.3"
bincode = "3.0.0"
uuid = { version = "1.0", features = ["v4", "serde"] }
url = "2.5"
libc = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion probing/extensions/cc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ rmesg = { version = "1.0.21", optional = true }
datafusion = { workspace = true }

[target.'cfg(target_os = "linux")'.dependencies]
procfs = { version = "0.17.0", default-features = false, features = ["chrono"] }
procfs = { version = "0.18.0", default-features = false, features = ["chrono"] }
libc = "0.2"

[target.'cfg(target_os = "macos")'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion probing/extensions/gpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ cudarc = { version = "0.19.7", default-features = false, features = [

# macOS-only: Metal + sysctl + ioreg. Not resolved when building for Linux.
[target.'cfg(target_os = "macos")'.dependencies]
metal = "0.31.0"
metal = "0.33.0"
2 changes: 1 addition & 1 deletion probing/extensions/python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ nix = { workspace = true }
once_cell = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
sha2 = "0.10"
sha2 = "0.11"
uuid = { version = "1.0", features = ["v4"] }
tokio = { workspace = true }
ureq = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion probing/memtable/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ log = "0.4"
thiserror = { workspace = true }
xxhash-rust = { version = "0.8", features = ["xxh3"] }
memmap2 = "0.9"
pco = "0.4"
pco = "1.0"

[target.'cfg(unix)'.dependencies]
libc = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion probing/proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ serde_json = { workspace = true }
thiserror = { workspace = true }


pco = "0.4.1"
pco = "1.0.2"

# WASM support for web environments
[target.'cfg(target_arch = "wasm32")'.dependencies]
Expand Down
6 changes: 3 additions & 3 deletions probing/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ tokio = { workspace = true, features = ["fs"] }
async-trait = "0.1.83"
bytes = "1"
nu-ansi-term = "0.50.1"
base64 = "0.21.5"
base64 = "0.22.1"
ureq = { workspace = true, features = ["json"] }
axum = { version = "0.8.1", default-features = false, features = [
"tokio",
Expand All @@ -56,10 +56,10 @@ hyper = { version = "1.3.1", features = ["client", "http1"] }
hyper-util = { version = "0.1", features = ["client", "http1", "tokio"] }
serde_urlencoded = "0.7.1"
futures-util = "0.3"
rmcp = { version = "1.8.0", features = ["server", "macros", "transport-streamable-http-server", "schemars"], optional = true }
rmcp = { version = "2.2.0", features = ["server", "macros", "transport-streamable-http-server", "schemars"], optional = true }

[target.'cfg(target_os = "linux")'.dependencies]
procfs = { version = "0.17.0", default-features = false, features = ["chrono"] }
procfs = { version = "0.18.0", default-features = false, features = ["chrono"] }

[dev-dependencies]
tempfile = "3.8"
Expand Down
2 changes: 1 addition & 1 deletion tests/regression/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ axum = { version = "0.8.1", default-features = false, features = [
"query",
"json",
] }
base64 = "0.21.5"
base64 = "0.22.1"
datafusion = { workspace = true }
futures = "0.3.31"
pyo3 = { version = "0.29.0", default-features = false, features = [
Expand Down
Loading