forked from ArroyoSystems/arroyo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
105 lines (97 loc) · 4 KB
/
Cargo.toml
File metadata and controls
105 lines (97 loc) · 4 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[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/integ",
]
resolver = "2"
[workspace.dependencies]
tonic = { version = "0.13", features = ["zstd", "transport", "tls-ring", "tls-native-roots"] }
tonic-build = { version = "0.13" }
tonic-web = { version = "0.13" }
tonic-reflection = { version = "0.13" }
tower = { version = "0.5" }
tower-http = {version = "0.6"}
axum = { version = "0.7" }
utoipa = { version = "4" }
arrow = { version = "55.2.0" }
arrow-ord = { version = "55.2.0" }
arrow-array = { version = "55.2.0" }
arrow-schema = { version = "55.2.0" }
arrow-json = { version = "55.2.0" }
object_store = { version = "0.12.3" }
parquet = { version = "55.2.0" }
ahash = { version = "=0.8.7" }
datafusion = { version = "48.0.1" }
datafusion-common = { version = "48.0.0" }
datafusion-proto = { version = "48.0.0" }
datafusion-functions = { version = "48.0.0", features = ["crypto_expressions"] }
datafusion-functions-window = {version = "48.0.0"}
datafusion-functions-json = { version = "0.48.0" }
datafusion-expr = { version = "48.0.0" }
deltalake = { version = "0.27.0" }
delta_kernel = { version = "0.13.0" }
cornucopia = { version = "0.9.0" }
cornucopia_async = {version = "0.6.0"}
deadpool-postgres = "0.14"
prost = { version = "0.13", features = ["no-recursion-limit"] }
prost-reflect = "0.14.0"
prost-build = {version = "0.13" }
prost-types = "0.13"
aws-config = "1.5.13"
reqwest = "0.12"
rusqlite = "0.31"
apache-avro = "0.18.0"
k8s-openapi = "0.24.0"
sqlparser = "0.55.0"
petgraph = "0.8"
rand = "0.9"
prometheus = "0.14.0"
rustls = "0.23.27"
tokio-rustls = "0.26.2"
rustls-pemfile = "2.2.0"
webpki-roots = "1.0.0"
[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 = '55.2.0/parquet'}
arrow-json = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '55.2.0/json'}
datafusion = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '48.0.1/arroyo'}
datafusion-common = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '48.0.1/arroyo'}
datafusion-execution = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '48.0.1/arroyo'}
datafusion-expr = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '48.0.1/arroyo'}
datafusion-physical-expr = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '48.0.1/arroyo'}
datafusion-physical-plan = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '48.0.1/arroyo'}
datafusion-proto = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '48.0.1/arroyo'}
datafusion-functions = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '48.0.1/arroyo'}
datafusion-functions-window = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = '48.0.1/arroyo'}
sqlparser = { git = "https://github.com/ArroyoSystems/sqlparser-rs", branch = "0.55.0/arroyo" }
cornucopia_async = { git = "https://github.com/ArroyoSystems/cornucopia", branch = "sqlite" }
cornucopia = { git = "https://github.com/ArroyoSystems/cornucopia", branch = "sqlite" }
jiter = {git = "https://github.com/ArroyoSystems/jiter", branch = "disable_python" }