forked from synchronal/dyd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 729 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 729 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 = "dyd"
authors = ["Eric Saxby", "synchronal.dev"]
description = "CLI for daily diffing of git repos"
edition = "2021"
exclude = [
"fixtures/*"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/synchronal/dyd"
version = "1.7.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
chrono = "0.4"
clap = { version = "4.0", features = ["derive", "env"] }
crossterm = "0.27"
envsubst = "0.2"
indexmap = "2.0"
lazy_static = "1.4"
regex = "1.5"
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
tui = { package = "ratatui", version = "0.23.0" }
[features]
# Treat warnings as a build error.
strict = []