Skip to content
Draft
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
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ codegen-units = 256

[workspace.dependencies]
anyhow = "1"
base64 = "0.21.2"
base64 = "0.22.0"
dashmap = "6.1.0"
git2 = "0.19.0"
indexmap = { version = "2.11", features = ["serde"] }
itertools = "0.14.0"
derive_builder = "0.12"
derive_builder = "0.20"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
serde-sarif = "0.4"
serde-sarif = "0.8"
serde_yaml = "0.9.21"
sha2 = "0.10.9"
num_cpus = "1.17.0"
thiserror = "2.0.16"
tracing = "0.1.40"
uuid = { version = "1.18.0", features = ["v4"] }
tree-sitter = "0.24.7"
tree-sitter = "0.26.0"
4 changes: 2 additions & 2 deletions crates/bins/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ terminal-emoji = "0.4.1"
getopts = "0.2.23"
indicatif = "0.18.0"
rayon = "1.11.0"
rocket = { version = "=0.5.0", features = ["json"] }
rocket = { version = "=0.5.1", features = ["json"] }
tracing-subscriber = { version = "0.3", features = [
"fmt",
"env-filter",
"json",
] }
tracing-appender = "0.2"
pretty_yaml = "0.5"
pretty_yaml = "0.6"


# For linux and macos, we need the vendored ssl
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ path-slash = "0.2.1"
percent-encoding = "2.3.1"
prettytable-rs = "0.10.0"
# Default features are disabled to turn off "http2", "charset".
reqwest = { version = "0.12", default-features = false, features = ["default-tls", "macos-system-configuration", "blocking", "json"] }
reqwest = { version = "0.13", default-features = false, features = ["default-tls", "macos-system-configuration", "blocking", "json"] }
valico = "4.0.0"
walkdir = "2.5.0"

Expand Down
2 changes: 1 addition & 1 deletion crates/secrets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ lazy_static = "1.5.0"

# remote
dd-sds = { git = "https://github.com/DataDog/dd-sensitive-data-scanner.git", rev = "a120e058d8533d41232318e6e4753e3e6d9104e4" }
strum = "0.25.0"
strum = "0.28.0"
2 changes: 1 addition & 1 deletion crates/static-analysis-kernel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ thiserror = { workspace = true }
tree-sitter = { workspace = true }

# other
deno_core = "0.330.0"
deno_core = "0.390.0"
globset = "0.4.16"
graphviz-rust = "0.9.6"
sequence_trie = "0.3.6"
Expand Down
Loading