-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 692 Bytes
/
Cargo.toml
File metadata and controls
39 lines (34 loc) · 692 Bytes
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
[package]
name = "flow"
version = "0.1.0"
edition = "2024"
license = "Apache-2.0"
[dependencies]
tucana = { version = "0.0.31", features = ["aquila"] }
tokio = "1.43.0"
async-trait = "0.1.85"
log = "0.4.24"
redis = { version = "0.32.0", features = [
"aio",
"tokio-comp",
"async-std-comp",
"json",
] }
serde_json = "1.0.138"
serde = "1.0.138"
lapin = "3.0.0"
futures-lite = "2.6.0"
tonic = "0.13.0"
dotenv = "0.15.0"
[dev-dependencies]
testcontainers = "0.24.0"
serial_test = "3.2.0"
[lib]
doctest = true
[features]
default = ["all"]
flow_queue = []
flow_store = []
flow_definition = []
flow_config = []
all = ["flow_queue", "flow_store", "flow_definition", "flow_config"]