Skip to content

Commit

Permalink
Merge pull request #30 from tachiniererin/update-duckdb
Browse files Browse the repository at this point in the history
Update duckdb to v0.3.1
  • Loading branch information
wangfenjin authored Jan 2, 2022
2 parents 3e78ad4 + cc82545 commit fc51cdf
Show file tree
Hide file tree
Showing 11 changed files with 36,427 additions and 36,214 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- run: cargo fmt --all -- --check
- name: Download DuckDB
run: |
wget https://github.com/duckdb/duckdb/releases/download/v0.2.9/libduckdb-linux-amd64.zip -O libduckdb.zip
wget https://github.com/duckdb/duckdb/releases/download/v0.3.1/libduckdb-linux-amd64.zip -O libduckdb.zip
unzip libduckdb.zip -d libduckdb
# - run: cargo clippy --all-targets --workspace --features bundled --features modern-full -- -D warnings -A clippy::redundant-closure
- run: cargo clippy --all-targets --workspace --features buildtime_bindgen --features modern-full -- -D warnings -A clippy::redundant-closure
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "duckdb"
version = "0.2.9"
version = "0.3.1"
authors = ["wangfenjin <[email protected]>"]
edition = "2018"
description = "Ergonomic wrapper for DuckDB"
Expand Down Expand Up @@ -45,9 +45,9 @@ memchr = "2.3"
uuid = { version = "0.8", optional = true }
smallvec = "1.6.1"
cast = { version = "0.3", features = ["std"] }
arrow = { version = "5.0", default-features = false, features = ["prettyprint"] }
arrow = { version = "6.5.0", default-features = false, features = ["prettyprint"] }
rust_decimal = "1.14"
strum = { version = "0.21", features = ["derive"] }
strum = { version = "0.23", features = ["derive"] }

[dev-dependencies]
doc-comment = "0.3"
Expand All @@ -65,7 +65,7 @@ rand = "0.8.3"

[dependencies.libduckdb-sys]
path = "libduckdb-sys"
version = "0.2.9"
version = "0.3.1"

[package.metadata.docs.rs]
features = []
Expand Down
6 changes: 3 additions & 3 deletions libduckdb-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libduckdb-sys"
version = "0.2.9"
version = "0.3.1"
authors = ["wangfenjin <[email protected]>"]
edition = "2018"
build = "build.rs"
Expand All @@ -23,9 +23,9 @@ buildtime_bindgen = ["bindgen", "pkg-config", "vcpkg"]

[build-dependencies]
bindgen = { version = "0.59", optional = true, default-features = false, features = ["runtime"] }
pkg-config = { version = "0.3.19", optional = true }
pkg-config = { version = "0.3.24", optional = true }
cc = { version = "1.0", features = ["parallel"], optional = true }
vcpkg = { version = "0.2", optional = true }

[dev-dependencies]
arrow = { version = "5.0", default-features = false }
arrow = { version = "6.5.0", default-features = false }
Loading

0 comments on commit fc51cdf

Please sign in to comment.