diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..366cfc3 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,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" |