blob: 5e652809f59fbf23934aae65cb6211b4357bf0a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[package]
name = "fm"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "fm"
path = "src/main.rs"
[lib]
name = "fm"
path = "src/lib.rs"
[dependencies]
chrono = "*"
regex = "1"
serde_yaml = "0.9.13"
shellexpand = "2.1.2"
tuikit = "*"
users = "0.11.0"
clap = { version = "4.0", features = ["derive"] }
|