-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.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.95"
attohttpc = { version = "0.28.2", default-features = false, features = [
"json",
"compress",
"tls-rustls",
] }
clap = { version = "4.5.23", features = ["derive", "cargo"] }
clap_complete = "4.5.40"
colored = "2.2.0"
directories = "5"
etcetera = "0.8.0"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.134"
toml = "0.8.19"
[build-dependencies]
clap = { version = "4.5.23", features = ["derive", "cargo"] }
clap_complete = "4.5.40"
clap_mangen = "0.2.24"
quote = "1.0.38"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.134"
syn = "2.0.91"