-
Notifications
You must be signed in to change notification settings - Fork 213
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (58 loc) · 1.54 KB
/
Cargo.toml
File metadata and controls
61 lines (58 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[workspace]
resolver = "3"
members = [
"crates/duckdb",
"crates/libduckdb-sys",
"crates/duckdb-loadable-macros",
]
[workspace.package]
version = "1.10502.0"
authors = ["DuckDB Labs and contributors", "wangfenjin <wangfenj@gmail.com>"]
repository = "https://github.com/duckdb/duckdb-rs"
homepage = "https://github.com/duckdb/duckdb-rs"
documentation = "http://docs.rs/duckdb/"
readme = "README.md"
keywords = ["duckdb", "database", "ffi"]
license = "MIT"
categories = ["database"]
edition = "2024"
rust-version = "1.85.1"
[workspace.dependencies]
duckdb = { version = "=1.10502.0", path = "crates/duckdb" }
duckdb-loadable-macros = { version = "=1.10502.0", path = "crates/duckdb-loadable-macros" }
libduckdb-sys = { version = "=1.10502.0", path = "crates/libduckdb-sys" }
arrow = { version = "58", default-features = false }
bindgen = { version = "0.72.1", default-features = false }
calamine = "0.28.0"
cast = "0.3"
cc = "1.0"
chrono = { version = "0.4.22", default-features = false, features = [
"std",
"clock",
] }
doc-comment = "0.3"
fallible-iterator = "0.3"
fallible-streaming-iterator = "0.1"
flate2 = "1.0"
hashlink = "0.10"
num = { version = "0.4", default-features = false }
num-integer = "0.1.46"
pkg-config = "0.3.24"
polars = "0.49.1"
polars-core = "0.49.1"
pretty_assertions = "1.4.1"
prettyplease = "0.2.20"
proc-macro2 = "1.0.56"
quote = "1.0.21"
r2d2 = "0.8.9"
rand = "0.9.0"
rust_decimal = "1.14"
serde = "1.0"
serde_json = "1.0"
strum = "0.27"
syn = "2.0.15"
tar = "0.4.38"
tempfile = "3.1.0"
url = "2.1"
uuid = "1.0"
vcpkg = "0.2"