-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (40 loc) · 1.2 KB
/
Cargo.toml
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
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "git-kit"
version = "0.0.15"
edition = "2021"
authors = ["Thomas Pearson [email protected]"]
license = "MIT"
description = "git cli containing templates & utilities."
readme = "README.md"
homepage = "https://github.com/xsv24/git-kit"
repository = "https://github.com/xsv24/git-kit"
keywords = ["cli", "git", "templates"]
categories = ["command-line-utilities"]
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
colored = "2"
clap = { version = "3.2.17", features = ["derive"] }
dunce = "1.0.3"
inquire = "0.5.2"
log = "0.4.17"
env_logger = "0.9.3"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
chrono = { version = "0.4.22" }
directories = { version = "4.0.1" }
rusqlite = { version = "0.28.0", features = ["bundled"] }
rusqlite_migration = "1.0.1"
regex = "1.7.0"
thiserror = "1.0"
uuid = { version = "1.1.2", features = [ "v4" ] }
[dev-dependencies]
fake = { version = "2.5.0" }
lazy_static = "1.4.0"
[build-dependencies]
anyhow = "1.0"
directories = { version = "4.0.1" }
log = "0.4.17"
rusqlite = { version = "0.28.0", features = ["bundled"] }
rusqlite_migration = "1.0.1"