forked from ArroyoSystems/arroyo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (50 loc) · 1.54 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
[workspace]
members = [
"arroyo-api",
"arroyo-compiler-service",
"arroyo-controller",
"arroyo-connectors",
"arroyo-datastream",
"arroyo-macro",
"arroyo-metrics",
"arroyo-node",
"arroyo-openapi",
"arroyo-rpc",
"arroyo-server-common",
"arroyo-sql",
"arroyo-sql-macro",
"arroyo-sql-testing",
"arroyo-state",
"arroyo-storage",
"arroyo-types",
"arroyo-worker",
"copy-artifacts",
"integ",
]
resolver = "2"
exclude = [
"build_dir",
]
[workspace.dependencies]
tonic = { version = "0.9" }
tonic-build = { version = "0.9" }
tonic-web = { version = "0.9" }
tonic-reflection = { version = "0.9" }
arrow = { version = "43.0.0" }
arrow-buffer = { version = "43.0.0" }
arrow-array = { version = "43.0.0" }
arrow-schema = { version = "43.0.0" }
parquet = { version = "43.0.0" }
[profile.release]
debug = 1
[profile.release.package.copy-artifacts]
# optimize for small binary size
strip = true
opt-level = "z"
[patch.crates-io]
typify = { git = 'https://github.com/ArroyoSystems/typify.git', branch = 'arroyo' }
parquet = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '43.0.0/arroyo_patches'}
arrow = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '43.0.0/arroyo_patches'}
arrow-buffer = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '43.0.0/arroyo_patches'}
arrow-array = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '43.0.0/arroyo_patches'}
arrow-schema = {git = 'https://github.com/ArroyoSystems/arrow-rs', branch = '43.0.0/arroyo_patches'}