Skip to content
Merged
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
92 changes: 49 additions & 43 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions crates/brioche-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ cfg-if = "1.0.4"
console-subscriber = "0.5.0"
debug-ignore = "1.0.5"
deno_ast = { version = "0.53.1", features = ["transpiling"] }
deno_core = "0.393.0"
deno_core = "0.395.0"
deno_error = "0.7.1"
directories = "6.0.0"
fastcdc = { version = "3.2.1", features = ["tokio"] }
Expand All @@ -64,7 +64,7 @@ json-canon = "0.1.3"
lazy_format = "2.0.3"
nix = { version = "0.31.2", features = ["user"] }
num_enum = "0.7.6"
object_store = { version = "0.13.1", features = [
object_store = { version = "0.13.2", features = [
"aws",
"http",
] }
Expand Down Expand Up @@ -103,9 +103,9 @@ rust-embed = { version = "8.11.0", features = [
rustls-native-certs = "0.8.3"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
serde_v8 = "0.302.0"
serde_v8 = "0.304.0"
serde_with = { version = "3.18.0", features = ["hex"] }
sha2 = "0.11.0-rc.5"
sha2 = "0.11.0"
sqlx = { version = "0.8.6", features = [
"runtime-tokio-rustls",
"sqlite",
Expand All @@ -120,7 +120,7 @@ thiserror = "2.0.18"
tick-encoding = "0.1.4"
tokio = { version = "1.50.0", features = ["full", "tracing"] }
tokio-util = { version = "0.7.18", features = ["compat", "io-util", "rt"] }
toml = "1.0.7"
toml = "1.1.0"
tower-lsp = "0.20.0"
tracing = "0.1.44"
tracing-opentelemetry = "0.32.1"
Expand All @@ -134,7 +134,7 @@ url = { version = "2.5.8", features = ["serde"] }
urlencoding = "2.1.3"
walkdir = "2.5.0"
wax = { version = "0.7.0", default-features = false }
zip = { version = "8.3.1", default-features = false, features = [
zip = { version = "8.4.0", default-features = false, features = [
"bzip2",
"deflate",
"deflate64",
Expand All @@ -150,7 +150,7 @@ humantime = "2.3.0"
assert_matches = "1.5.0"
aws-runtime = "1.7.2"
brioche-test-support = { path = "../brioche-test-support" }
deno_core = { version = "0.393.0", features = [
deno_core = { version = "0.395.0", features = [
# For tests, this feature should be enabled to resolve a segfault that
# can occur if V8 detects the `pki` CPU flag. See this issue:
# https://github.com/denoland/deno_core/issues/1091
Expand Down
4 changes: 2 additions & 2 deletions crates/brioche-test-support/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ directories = "6.0.0"
futures = "0.3.32"
hex = "0.4.3"
mockito = "1.7.2"
object_store = "0.13.1"
object_store = "0.13.2"
reqwest = "0.13.2"
reqwest-middleware = "0.5.1"
serde = { version = "1.0.228", features = ["derive"] }
Expand All @@ -21,7 +21,7 @@ tempfile = "3.27.0"
tokio = { version = "1.50.0", features = ["full", "tracing"] }
tokio-stream = { version = "0.1.18", features = ["sync"] }
tokio-util = "0.7.18"
toml = "1.0.7"
toml = "1.1.0"
tower-lsp = "0.20.0"
tracing = "0.1.44"
ulid = "1.2.1"
Expand Down
4 changes: 2 additions & 2 deletions crates/brioche/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ csv = "1.4.0"
futures = "0.3.32"
hex = "0.4.3"
notify = "8.2.0"
object_store = "0.13.1"
object_store = "0.13.2"
openssl = { version = "0.10.76", optional = true }
reqwest = { version = "0.13.2", default-features = false, features = [
"http2",
Expand All @@ -33,7 +33,7 @@ reqwest = { version = "0.13.2", default-features = false, features = [
semver = { version = "1.0.27", features = ["serde"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
sha2 = "0.11.0-rc.5"
sha2 = "0.11.0"
ssh-key = { version = "0.7.0-rc.9", default-features = false, features = ["std", "ed25519"] }
superconsole = "0.2.0"
tar = "0.4.45"
Expand Down