-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 887 Bytes
/
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
[package]
name = "tatzelwurm"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.89"
atoi = "2.0.0"
byteorder = "1.5.0"
bytes = "1.7.2"
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.20", features = ["derive"] }
evalexpr = "12.0.1"
futures = "0.3.31"
rand = "0.8.5"
rmp-serde = "1.3.0"
serde = { version = "1.0.210", features = ["serde_derive"] }
surrealdb = "2.0.4" # only for clients, for dev purpose, should be removed for production
tabled = "0.16.0"
thiserror = "1.0.63"
tokio = { version = "1.40.0", features = ["full"] }
tokio-stream = "0.1.16"
tokio-util = { version = "0.7.12", features = ["codec"] }
uuid = { version = "1.10.0", features = ["fast-rng", "serde", "v4"] }
[[bin]]
name = "tatzelwurm"
path = "src/main.rs"
[[bin]]
name = "workwurm"
path = "src/bin/worker.rs"
[[bin]]
name = "actionwurm"
path = "src/bin/actioner.rs"