-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
35 lines (30 loc) · 1.07 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
[package]
edition = "2021"
name = "datafusion-catalogprovider-glue"
description = "Glue as a CatalogProvider for Datafusion"
version = "0.4.0"
homepage = "https://github.com/datafusion-contrib/datafusion-catalogprovider-glue"
repository = "https://github.com/datafusion-contrib/datafusion-catalogprovider-glue"
readme = "README.md"
authors = ["Tim Van Wassenhove <[email protected]>"]
license = "Apache-2.0"
keywords = [ "arrow", "datafusion", "aws", "glue" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "datafusion_catalogprovider_glue"
path = "src/lib.rs"
[dependencies]
aws-config = "1"
aws-sdk-glue = "1"
aws-types = "1"
datafusion = { version = "37", features = ["avro"] }
object_store = { version = "0.9", features = ["aws"] }
pest = "2"
pest_derive = "2"
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread", "sync", "fs"] }
url = "2"
dashmap = "5"
deltalake = {version = "0.17", optional=true, features=["datafusion", "deltalake-aws", "s3"]}
[features]
default = ["deltalake"]
deltalake = ["dep:deltalake"]