wl/Cargo.toml
Louis Hollingworth 056f670710
Updated template files and cargo init.
Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
2023-05-13 18:40:28 +01:00

17 lines
544 B
TOML

[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"