Updated template files and cargo init.

Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
This commit is contained in:
Louis Hollingworth 2023-05-13 18:40:28 +01:00
parent dc477aadbe
commit 056f670710
Signed by: lucxjo
GPG key ID: A11415CB3DC7809B
6 changed files with 761 additions and 4 deletions

16
Cargo.toml Normal file
View file

@ -0,0 +1,16 @@
[package]
name = "wl"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
crossterm = { version = "0.19", features = [ "serde" ] }
serde = {version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
rand = { version = "0.7.3", default-features = false, features = ["std"] }
tui = { version = "0.14", default-features = false, features = ['crossterm', 'serde'] }
thiserror = "1.0"
dirs = "5.0.1"