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
16 changes: 8 additions & 8 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ allow-branch = ["*"]
consolidate-commits = true

[workspace.dependencies]
anyhow = "1.0.100"
anyhow = "1.0.101"
arrow = { version = "53", features = [
"pyarrow",
"prettyprint",
Expand Down
6 changes: 3 additions & 3 deletions prqlc/prqlc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ csv = "1.4.0"
enum-as-inner = { workspace = true }
itertools = { workspace = true }
log = { workspace = true }
regex = "1.12.2"
regex = "1.12.3"
schemars = { workspace = true }
semver = { workspace = true }
# serde is required for the `from_text` feature of PRQL, so we can't really put
Expand All @@ -88,7 +88,7 @@ vergen-gitcl = { version = "1.0.0", features = ["build"] }

# unique dependencies from the CLI, marked as optional and included in the 'cli'
# feature
anyhow = { version = "1.0.100", features = ["backtrace"], optional = true }
anyhow = { version = "1.0.101", features = ["backtrace"], optional = true }
clap = { version = "4.5.53", features = [
"derive",
"env",
Expand Down Expand Up @@ -145,7 +145,7 @@ test_each_file = "0.3.6"

# criterion 0.8 depends on `alloca` which doesn't support WASM targets
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
criterion = { version = "0.8.1", default-features = false }
criterion = { version = "0.8.2", default-features = false }

# We use `benches/bench.rs` for the benchmark harness so disable searching for
# benchmarks in bin & lib here to simplify using criterion
Expand Down
2 changes: 1 addition & 1 deletion web/book/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ anstream = { version = "0.6.21" }
globset = "0.4.18"
insta = { workspace = true }
log = { workspace = true }
regex = "1.12.2"
regex = "1.12.3"
serde_json = { workspace = true }
serde_yaml = { workspace = true }
similar-asserts = { workspace = true }
Expand Down
Loading