forked from ArroyoSystems/arroyo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
78 lines (73 loc) · 3.29 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[workspace]
members = [
"crates/arroyo",
"crates/arroyo-api",
"crates/arroyo-bin",
"crates/arroyo-compiler-service",
"crates/arroyo-connectors",
"crates/arroyo-controller",
"crates/arroyo-datastream",
"crates/arroyo-df",
"crates/arroyo-formats",
"crates/arroyo-metrics",
"crates/arroyo-node",
"crates/arroyo-openapi",
"crates/arroyo-operator",
"crates/arroyo-rpc",
"crates/arroyo-server-common",
"crates/arroyo-sql-testing",
"crates/arroyo-state",
"crates/arroyo-storage",
"crates/arroyo-types",
"crates/arroyo-udf/arroyo-udf-common",
"crates/arroyo-udf/arroyo-udf-plugin",
"crates/arroyo-udf/arroyo-udf-host",
"crates/arroyo-udf/arroyo-udf-macros",
"crates/arroyo-worker",
"crates/copy-artifacts",
"crates/integ",
]
resolver = "2"
[workspace.dependencies]
tonic = { version = "0.11" }
tonic-build = { version = "0.11" }
tonic-web = { version = "0.11" }
tonic-reflection = { version = "0.11" }
arrow = { version = "51.0.0" }
arrow-ord = { version = "51.0.0" }
arrow-array = { version = "51.0.0" }
arrow-schema = { version = "51.0.0" }
arrow-json = { version = "51.0.0" }
object_store = { version = "0.9.1" }
parquet = { version = "51.0.0" }
ahash = { version = "=0.8.7" }
datafusion = { version = "37.1.0" }
datafusion-common = { version = "37.1.0" }
datafusion-proto = { version = "37.1.0" }
datafusion-functions = { version = "37.1.0" }
deltalake = { version = "0.17.3" }
cornucopia = { version = "0.9.0" }
cornucopia_async = {version = "0.6.0"}
deadpool-postgres = "0.12"
[profile.release]
debug = 1
[profile.dev]
split-debuginfo = "unpacked"
[patch.crates-io]
typify = { git = 'https://github.com/ArroyoSystems/typify.git', branch = 'arroyo' }
parquet = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '51.0.0/parquet_bytes'}
arrow = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '51.0.0/parquet_bytes'}
arrow-buffer = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '51.0.0/parquet_bytes'}
arrow-array = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '51.0.0/parquet_bytes'}
arrow-schema = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '51.0.0/parquet_bytes'}
arrow-json = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '51.0.0/json'}
object_store = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = 'object_store_0.9.1_arroyo'}
datafusion = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '37.1.0_arroyo'}
datafusion-common = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '37.1.0_arroyo'}
datafusion-execution = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '37.1.0_arroyo'}
datafusion-expr = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '37.1.0_arroyo'}
datafusion-physical-expr = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '37.1.0_arroyo'}
datafusion-physical-plan = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '37.1.0_arroyo'}
datafusion-proto = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '37.1.0_arroyo'}
cornucopia_async = { git = "https://github.com/ArroyoSystems/cornucopia", branch = "sqlite" }
cornucopia = { git = "https://github.com/ArroyoSystems/cornucopia", branch = "sqlite" }