-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (25 loc) · 955 Bytes
/
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
[package]
edition = "2021"
name = "datafusion-catalogprovider-glue"
description = "Glue as a CatalogProvider for Datafusion"
version = "0.2.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 = "0.49.0"
aws-sdk-glue = "0.19.0"
aws-types = "0.49.0"
datafusion = { version = "12.0.0", features = ["avro"] }
object_store = { version = "0.5.0", features = ["aws"] }
pest = "2.3"
pest_derive = "2.3"
tokio = { version = "1.21", features = ["macros", "rt", "rt-multi-thread", "sync", "fs"] }
url = "2.2"