-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
46 lines (40 loc) · 1.22 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
43
44
45
46
[workspace]
members = [
"aqueducts/core",
"aqueducts/odbc",
"aqueducts/utils",
"aqueducts/schema_gen",
"aqueducts-cli"
]
resolver = "2"
[workspace.package]
authors = ["<vigimite@protonmail.com>"]
edition = "2021"
description = "Framework to build ETL data pipelines declaratively"
homepage = "https://github.com/vigimite/aqueducts"
repository = "https://github.com/vigimite/aqueducts"
readme = "README.md"
version = "0.8.0"
keywords = ["aqueducts", "ETL", "data", "pipeline"]
categories = ["api-bindings"]
license-file = "LICENSE"
[workspace.dependencies]
aqueducts = { path = "aqueducts/core", version = "0.8.0" }
aqueducts-odbc = { path = "aqueducts/odbc", version = "0.8.0" }
aqueducts-utils = { path = "aqueducts/utils", version = "0.8.0" }
datafusion = "44"
deltalake = { version = "0.23.0", features = ["datafusion"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yml = "0.0.10"
toml = "0.8.19"
schemars = { version = "0.8", features = ["chrono", "url", "preserve_order"] }
tokio = { version = "1", features = ["rt"] }
tracing = "0.1"
thiserror = "2"
regex = "1"
derive-new = "0.7"
url = { version = "2", features = ["serde"] }
chrono = { version = "0.4", features = ["serde"] }
[profile.dev]
debug = 0