-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
69 lines (53 loc) · 1.53 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
[workspace.package]
version = "0.2.0-rc2"
edition = "2021"
description = "High-performance Rust flow processing engine"
authors = ["chenquan <chenquan.dev@gmail.com>"]
repository = "https://github.com/arkflow-rs/arkflow"
homepage = "https://github.com/arkflow-rs/arkflow"
license = "Apache-2.0"
[workspace]
members = [
"crates/arkflow-plugin",
"crates/arkflow-core",
"crates/arkflow"
]
resolver = "2"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7.14"
async-trait = "0.1"
futures = "0.3"
futures-util = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
humantime = "2.1.0"
thiserror = "2.0"
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["std", "fmt", "json"] }
prometheus = "0.13"
datafusion = "46"
arrow-json = "54"
prost-reflect = "0.14.7"
prost-types = "0.13.5"
protobuf-parse = "3.7.2"
protobuf = "3.7.2"
toml = "0.8"
lazy_static = "1.4"
axum = "0.6"
reqwest = { version = "0.12", features = ["json"] }
clap = { version = "4.5", features = ["derive"] }
colored = "3.0"
flume = "=0.11"
rumqttc = "0.24.0"
# Kafka
aws-msk-iam-sasl-signer = "1.0.0"
rdkafka = { version = "0.37", features = ["cmake-build", "tracing", "sasl", "ssl-vendored", "zstd"] }
rdkafka-sys = "4.8.0"
sasl2-sys = { version = "0.1.22", features = ["vendored"] }
arkflow-core = { path = "crates/arkflow-core", version = "0.2.0-rc2" }
arkflow-plugin = { path = "crates/arkflow-plugin", version = "0.2.0-rc2" }
tempfile = "3.19.1"
mockall = "0.12"