-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 865 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 865 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
33
34
[package]
name = "git-wippy"
description = "Git stash with super powers"
documentation = "https://github.com/mekwall/git-wippy"
version = "0.3.0"
edition = "2024"
rust-version = "1.93"
[[bin]]
name = "git-wippy"
path = "src/main.rs"
doc = false
[dependencies]
clap = { version = "4.5", features = ["derive", "env", "string", "help", "usage", "error-context"] }
clap-cargo = "0.18"
tokio = { version = "1.49.0", features = ["macros", "rt-multi-thread", "process", "fs"] }
anyhow = "1.0.102"
chrono = "0.4.44"
dialoguer = "0.12.0"
async-trait = "0.1.89"
futures = "0.3.32"
fluent = "0.17.0"
unic-langid = "0.9.6"
[dev-dependencies]
tokio-test = "0.4.5"
assert_cmd = "2.1.2"
tempfile = "3.26.0"
mockall = "0.14.0"
async-trait = "0.1.89"
regex = "1.12.3"
predicates = "3.1.4"
tokio = { version = "1.49.0", features = ["macros", "rt-multi-thread", "process", "fs"] }