Skip to content

Commit

Permalink
chore: bump the patch group with 4 updates (#4427)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Maximilian Roos <m@maxroos.com>
  • Loading branch information
dependabot[bot] and max-sixty authored Apr 29, 2024
1 parent b194b09 commit 3da7830
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 12 deletions.
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 @@ -50,4 +50,4 @@ insta = {version = "1.38.0", features = ["colors", "glob", "yaml"]}
insta-cmd = "0.4.0"
itertools = "0.12.0"
log = "0.4.21"
serde = {version = "1.0.198", features = ["derive"]}
serde = {version = "1.0.199", features = ["derive"]}
7 changes: 5 additions & 2 deletions prqlc/prqlc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ prqlc-ast = {path = "../prqlc-ast", version = "0.11.5"}
prqlc-parser = {path = "../prqlc-parser", version = "0.11.5"}

anstream = {version = "0.6.13", features = ["auto"]}
ariadne = "0.4.0"
# 0.4.1 causes breaking changes; TODO: resolve
ariadne = "=0.4.0"
chrono = "0.4.38"
csv = "1.3.0"
enum-as-inner = "0.6.0"
Expand Down Expand Up @@ -80,7 +81,9 @@ minijinja = {version = "=2.0.1", features = ["unstable_machinery"], optional = t

# For integration tests. These are gated by the `test-dbs` and `test-dbs-external` features,
# rather than dev-dependencies, because dev-dependencies can't be optional.
duckdb = {version = "0.10.1", optional = true, features = ["bundled", "chrono"]}

# TODO: 0.10.2 causes small breaking changes; resolve
duckdb = {version = "=0.10.1", optional = true, features = ["bundled", "chrono"]}
glob = {version = "0.3.1", optional = true}
mysql = {version = "25", optional = true}
pg_bigdecimal = {version = "0.1.0", optional = true}
Expand Down
2 changes: 2 additions & 0 deletions prqlc/prqlc/tests/integration/dbs/protocol/duckdb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ impl DbProtocolHandler for duckdb::Connection {
ValueRef::Blob(_) => "BLOB".to_string(),
ValueRef::Date32(v) => v.to_string(),
ValueRef::Time64(u, v) => format!("{v} {u:?}"),
#[allow(unreachable_patterns)]
_ => unimplemented!(),
};
columns.push(value);
}
Expand Down
2 changes: 1 addition & 1 deletion web/book/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ itertools = {workspace = true}
mdbook = {version = "0.4.36", default-features = false}
mdbook-preprocessor-boilerplate = "0.1.2"
prqlc = {path = "../../prqlc/prqlc", default-features = false}
pulldown-cmark = {version = "0.10.2", default-features = false}
pulldown-cmark = {version = "0.10.3", default-features = false}
pulldown-cmark-to-cmark = "13.0.0"
strum = {version = "0.26.2", features = ["std", "derive"]}
strum_macros = "0.26.2"
Expand Down

0 comments on commit 3da7830

Please sign in to comment.