-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 740 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "record-tools-rs"
version = "0.1.0"
authors = [
"Christoph Kappel <christoph@unexist.dev>"
]
license-file = "LICENSE"
homepage = "https://unexist.dev"
repository = "https://hg.unexist.dev/record-tools-rs"
edition = "2024"
exclude = ["/Taskfile.yml", "/templates"]
[dependencies]
clap = { version = "4.5.40", features = ["derive"] }
clap-config-file = "0.5.0"
serde = { version = "1.0.219", features = ["derive"] }
config = "0.15.11"
anyhow = "1.0.98"
text-template = "0.1.0"
time = {version = "0.3.41", features = ["formatting", "macros"]}
slugify = "0.1.0"
regex = "1.11.1"
[dev-dependencies]
assert_cmd = "2.0.17"
predicates = "3.0"
proptest = "1.7.0"
tempfile = "3.20.0"
[[bin]]
name = "rtrs"
path = "src/main.rs"