blob: 366cfc3951e64185b8f227a3dca473a0f5fd803e (
plain)
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
|
[package]
name = "be-a-sigma"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4.0", features = ["derive"] }
tokio = { version = "1.0", features = ["full"] }
tempfile = "3.0"
indicatif = "0.17"
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
prettytable-rs = "0.10"
[[bin]]
name = "sigma-sender"
path = "src/sigma-sender.rs"
[[bin]]
name = "sigma-caster"
path = "src/sigma-caster.rs"
[[bin]]
name = "sigma-configurator"
path = "src/sigma-configurator.rs"
|