forked from getdozer/dozer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
36 lines (33 loc) · 1.28 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
[workspace]
members = [
"dozer-ingestion",
"dozer-types",
"dozer-core",
"dozer-cli",
"dozer-sql",
"dozer-tracing",
"dozer-tests",
"dozer-log",
"dozer-log-js",
"dozer-log-python",
"dozer-utils",
"dozer-sink-aerospike",
"dozer-sink-clickhouse", "dozer-sink-oracle",
]
resolver = "2"
[workspace.dependencies]
bincode = { version = "2.0.0-rc.3", features = ["derive"] }
datafusion = { version = "33.0.0" }
datafusion-expr = { version = "33.0.0" }
[patch.crates-io]
postgres = { git = "https://github.com/getdozer/rust-postgres" }
postgres-protocol = { git = "https://github.com/getdozer/rust-postgres" }
postgres-types = { git = "https://github.com/getdozer/rust-postgres" }
tokio-postgres = { git = "https://github.com/getdozer/rust-postgres" }
datafusion = { git = "https://github.com/getdozer/arrow-datafusion" }
datafusion-expr = { git = "https://github.com/getdozer/arrow-datafusion" }
datafusion-physical-expr = { git = "https://github.com/getdozer/arrow-datafusion" }
datafusion-physical-plan = { git = "https://github.com/getdozer/arrow-datafusion" }
datafusion-sql = { git = "https://github.com/getdozer/arrow-datafusion" }
datafusion-proto = { git = "https://github.com/getdozer/arrow-datafusion" }
datafusion-common = { git = "https://github.com/getdozer/arrow-datafusion" }