-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
28 lines (26 loc) · 1.02 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
[package]
name = "datafusion-index-provider"
version = "0.1.0"
edition = "2021"
description = "A Rust crate that adds index-based query acceleration to DataFusion TableProviders"
license = "Apache-2.0"
repository = "https://github.com/datafusion-contrib/datafusion-index-provider"
homepage = "https://github.com/datafusion-contrib/datafusion-index-provider"
documentation = "https://docs.rs/datafusion-index-provider"
keywords = ["datafusion", "index", "database", "query", "analytics"]
categories = ["database", "data-structures"]
readme = "README.md"
rust-version = "1.75"
[dependencies]
async-trait = "0.1.89"
datafusion = { version = "52.1.0", default-features = false }
datafusion-common = { version = "52.1.0", default-features = false }
futures = "0.3.32"
futures-util = "0.3.32"
futures-core = "0.3.32"
log = "0.4.29"
[dev-dependencies]
tokio = { version = "1.49.0", features = ["macros", "rt-multi-thread"] }
env_logger = "0.11.9"
parking_lot = "0.12.5"
datafusion = { version = "52.1.0", default-features = false, features = ["sql"] }