-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (39 loc) · 1.2 KB
/
Cargo.toml
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
[package]
name = "async-duckdb"
version = "0.0.3"
authors = [
"Jesse Rubin",
"Ryan Fowler", # based on ryfowl's `async-sqlite` crate
]
edition = "2021"
license = "MIT"
description = "A library for working with duckdb asynchronously"
repository = "https://github.com/jessekrubin/async-duckdb"
documentation = "https://docs.rs/async-duckdb"
keywords = ["duckdb", "async", "tokio"]
categories = ["database"]
[features]
default = ["bundled"]
bundled = ["duckdb/bundled"]
json = ["duckdb/json"]
parquet = ["duckdb/parquet"]
vtab = ["duckdb/vtab"]
vtab-loadable = ["duckdb/vtab-loadable"]
vtab-excel = ["duckdb/vtab-excel"]
vtab-arrow = ["duckdb/vtab-arrow"]
appender-arrow = ["duckdb/appender-arrow"]
vtab-full = ["duckdb/vtab-full"]
extensions-full = ["duckdb/extensions-full"]
buildtime_bindgen = ["duckdb/buildtime_bindgen"]
modern-full = ["duckdb/modern-full"]
polars = ["duckdb/polars"]
[dependencies]
crossbeam-channel = { version = "0.5.9" }
duckdb = { version = "1.1.1" }
futures-channel = { version = "0.3.29" }
futures-util = { version = "0.3.29" }
[dev-dependencies]
async-std = { version = "1.12.0" }
paste = { version = "1.0.12" }
tempfile = { version = "3.6.0" }
tokio = { version = "1.29.1", features = ["rt"] }