Skip to content

Commit fc51cdf

Browse files
authored
Merge pull request #30 from tachiniererin/update-duckdb
Update duckdb to v0.3.1
2 parents 3e78ad4 + cc82545 commit fc51cdf

File tree

11 files changed

+36427
-36214
lines changed

11 files changed

+36427
-36214
lines changed

.github/workflows/rust.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- run: cargo fmt --all -- --check
3939
- name: Download DuckDB
4040
run: |
41-
wget https://github.com/duckdb/duckdb/releases/download/v0.2.9/libduckdb-linux-amd64.zip -O libduckdb.zip
41+
wget https://github.com/duckdb/duckdb/releases/download/v0.3.1/libduckdb-linux-amd64.zip -O libduckdb.zip
4242
unzip libduckdb.zip -d libduckdb
4343
# - run: cargo clippy --all-targets --workspace --features bundled --features modern-full -- -D warnings -A clippy::redundant-closure
4444
- run: cargo clippy --all-targets --workspace --features buildtime_bindgen --features modern-full -- -D warnings -A clippy::redundant-closure

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "duckdb"
3-
version = "0.2.9"
3+
version = "0.3.1"
44
authors = ["wangfenjin <[email protected]>"]
55
edition = "2018"
66
description = "Ergonomic wrapper for DuckDB"
@@ -45,9 +45,9 @@ memchr = "2.3"
4545
uuid = { version = "0.8", optional = true }
4646
smallvec = "1.6.1"
4747
cast = { version = "0.3", features = ["std"] }
48-
arrow = { version = "5.0", default-features = false, features = ["prettyprint"] }
48+
arrow = { version = "6.5.0", default-features = false, features = ["prettyprint"] }
4949
rust_decimal = "1.14"
50-
strum = { version = "0.21", features = ["derive"] }
50+
strum = { version = "0.23", features = ["derive"] }
5151

5252
[dev-dependencies]
5353
doc-comment = "0.3"
@@ -65,7 +65,7 @@ rand = "0.8.3"
6565

6666
[dependencies.libduckdb-sys]
6767
path = "libduckdb-sys"
68-
version = "0.2.9"
68+
version = "0.3.1"
6969

7070
[package.metadata.docs.rs]
7171
features = []

libduckdb-sys/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libduckdb-sys"
3-
version = "0.2.9"
3+
version = "0.3.1"
44
authors = ["wangfenjin <[email protected]>"]
55
edition = "2018"
66
build = "build.rs"
@@ -23,9 +23,9 @@ buildtime_bindgen = ["bindgen", "pkg-config", "vcpkg"]
2323

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

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

0 commit comments

Comments
 (0)