-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
44 lines (40 loc) · 1.11 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
[package]
authors = ["Sondre Aasemoen <[email protected]>"]
build = "build.rs"
description = "Quickly and easily fetch .gitignore templates from www.gitignore.io"
documentation = "https://github.com/sondr3/git-ignore"
edition = "2021"
homepage = "https://github.com/sondr3/git-ignore"
license = "GPL-3.0-or-later"
name = "git-ignore-generator"
readme = "README.md"
repository = "https://github.com/sondr3/git-ignore"
version = "1.4.0"
[[bin]]
name = "git-ignore"
path = "src/main.rs"
[profile.release]
lto = "fat"
[dependencies]
anyhow = "1.0.86"
attohttpc = { version = "0.28.0", default-features = false, features = [
"json",
"compress",
"tls-rustls",
] }
clap = { version = "4.5.9", features = ["derive", "cargo"] }
clap_complete = "4.5.8"
colored = "2.1.0"
directories = "5"
etcetera = "0.8.0"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
toml = "0.8.15"
[build-dependencies]
clap = { version = "4.5.9", features = ["derive", "cargo"] }
clap_complete = "4.5.8"
clap_mangen = "0.2.22"
quote = "1.0.36"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
syn = "2.0.72"