-
Notifications
You must be signed in to change notification settings - Fork 219
/
Cargo.toml
86 lines (79 loc) · 3.46 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
79
80
81
82
83
84
85
86
[workspace]
members = [
"crates/arroyo",
"crates/arroyo-api",
"crates/arroyo",
"crates/arroyo-compiler-service",
"crates/arroyo-connectors",
"crates/arroyo-controller",
"crates/arroyo-datastream",
"crates/arroyo-planner",
"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-udf/arroyo-udf-python",
"crates/arroyo-worker",
"crates/copy-artifacts",
"crates/integ",
]
resolver = "2"
[workspace.dependencies]
tonic = { version = "0.11", features = ["zstd"] }
tonic-build = { version = "0.11" }
tonic-web = { version = "0.11" }
tonic-reflection = { version = "0.11" }
arrow = { version = "=52.1.0" }
arrow-ord = { version = "=52.1.0" }
arrow-array = { version = "=52.1.0" }
arrow-schema = { version = "=52.1.0" }
arrow-json = { version = "=52.1.0" }
object_store = { version = "0.10" }
parquet = { version = "=52.1.0" }
ahash = { version = "=0.8.7" }
datafusion = { version = "40.0.0" }
datafusion-common = { version = "40.0.0" }
datafusion-proto = { version = "40.0.0" }
datafusion-functions = { version = "40.0.0", features = ["crypto_expressions"] }
datafusion-functions-json = { version = "0.40.0" }
deltalake = { version = "0.18.2" }
cornucopia = { version = "0.9.0" }
cornucopia_async = {version = "0.6.0"}
deadpool-postgres = "0.12"
prost = { version = "0.12", features = ["no-recursion-limit"] }
prost-reflect = "0.12.0"
prost-build = {version = "0.12" }
prost-types = "0.12"
aws-config = "1.5.6"
reqwest = "0.12"
[profile.release]
debug = 1
[profile.dev]
split-debuginfo = "unpacked"
[patch.crates-io]
deltalake = { git = 'https://github.com/delta-io/delta-rs', rev = 'e75a0b49b40f35ed361444bbea0e5720f359d732' }
typify = { git = 'https://github.com/ArroyoSystems/typify.git', branch = 'arroyo' }
parquet = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '52.1.0/parquet_bytes'}
arrow-json = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '52.1.0/json'}
datafusion = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '40.0.0/arroyo'}
datafusion-common = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '40.0.0/arroyo'}
datafusion-execution = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '40.0.0/arroyo'}
datafusion-expr = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '40.0.0/arroyo'}
datafusion-physical-expr = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '40.0.0/arroyo'}
datafusion-physical-plan = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '40.0.0/arroyo'}
datafusion-proto = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '40.0.0/arroyo'}
datafusion-functions = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '40.0.0/arroyo'}
object_store = { git = 'http://github.com/ArroyoSystems/arrow-rs', branch = 'object_store_0.10.2/arroyo' }
cornucopia_async = { git = "https://github.com/ArroyoSystems/cornucopia", branch = "sqlite" }
cornucopia = { git = "https://github.com/ArroyoSystems/cornucopia", branch = "sqlite" }