Create the first basic app

This commit is contained in:
BuyMyMojo 2022-03-05 16:08:37 +11:00
commit dc54152489
No known key found for this signature in database
GPG key ID: FFD9FDB3FD0A026B
9 changed files with 565 additions and 0 deletions

11
Cargo.toml Normal file
View file

@ -0,0 +1,11 @@
[package]
name = "rust-3xp1"
version = "1.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tracing = "0.1.31"
tracing-subscriber = "0.3.9"
clap = { version = "3.1.5", features = ["derive"] }