-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 824 Bytes
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 824 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]
version = "0.0.0"
name = "code0-flow"
edition = "2021"
description = "Crate for managing the code0-flows inside of the Flow Queue & FlowStore"
repository = "https://github.com/code0-tech/code0-flow"
homepage = "https://code0.tech"
license = "Apache-2.0"
[dependencies]
tucana = { version = "0.0.28", features = ["aquila"] }
tokio = "1.43.0"
async-trait = "0.1.85"
log = "0.4.24"
redis = { version = "0.31.0", features = [
"aio",
"tokio-comp",
"async-std-comp",
"json",
] }
serde_json = "1.0.138"
serde = "1.0.138"
lapin = "2.5.0"
futures-lite = "2.6.0"
tonic = "0.13.0"
[dev-dependencies]
testcontainers = "0.24.0"
serial_test = "3.2.0"
[lib]
doctest = true
[features]
default = ["all"]
flow_queue = []
flow_store = []
flow_definition = []
all = ["flow_queue", "flow_store", "flow_definition"]