forked from ArroyoSystems/arroyo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
72 lines (65 loc) · 2.84 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
[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-worker",
"crates/copy-artifacts",
"crates/integ", "crates/arroyo-udf/arroyo-udf-macros",
]
resolver = "2"
exclude = [
"build_dir",
]
[workspace.dependencies]
tonic = { version = "0.11" }
tonic-build = { version = "0.11" }
tonic-web = { version = "0.11" }
tonic-reflection = { version = "0.11" }
arrow = { version = "50.0.0" }
arrow-ord = { version = "50.0.0" }
arrow-array = { version = "50.0.0" }
arrow-schema = { version = "50.0.0" }
arrow-json = { version = "50.0.0" }
object_store = { version = "0.9.0" }
parquet = { version = "50.0.0" }
ahash = { version = "=0.8.7" }
[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 = '50.0.0/parquet_bytes'}
arrow = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '50.0.0/parquet_bytes'}
arrow-buffer = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '50.0.0/parquet_bytes'}
arrow-array = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '50.0.0/parquet_bytes'}
arrow-schema = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '50.0.0/parquet_bytes'}
arrow-json = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '50.0.0/json'}
object_store = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '0.9.0/put_part_api'}
datafusion = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = 'reset_execs_36'}
datafusion-common = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = 'reset_execs_36'}
datafusion-execution = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = 'reset_execs_36'}
datafusion-expr = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = 'reset_execs_36'}
datafusion-physical-expr = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = 'reset_execs_36'}
datafusion-physical-plan = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = 'reset_execs_36'}
datafusion-proto = {git = 'https://github.com/ArroyoSystems/arrow-datafusion', branch = 'reset_execs_36'}