forked from stacked-git/stgit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (48 loc) · 1.28 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
46
47
48
49
50
51
52
[package]
name = "stgit"
version = "2.1.0"
edition = "2021"
rust-version = "1.64"
authors = [
"Catalin Marinas <[email protected]>",
"Peter Grayson <[email protected]>",
]
license = "GPL-2.0-only"
homepage = "https://stacked-git.github.io/"
repository = "https://github.com/stacked-git/stgit"
[[bin]]
bench = false
path = "src/main.rs"
name = "stg"
[dependencies]
anyhow = "1.0"
bstr = { version = "1.0", default-features = false, features = ["std"] }
chrono = { version = "0.4", default-features = false, features = ["clock"] }
clap = { version = "4.0", default-features = false, features = [
"color",
"help",
"std",
"string",
"suggestions",
"usage",
"wrap_help",
] }
ctrlc = "3.2"
encoding_rs = "0.8"
git-repository = { version = "0.33", default-features = false, features = [] }
indexmap = "1.8"
is-terminal = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
strsim = "0.10"
tempfile = "3"
termcolor = "1.1"
thiserror = "~1.0"
bzip2 = { version = "0.4", optional = true }
curl = { version = "0.4", optional = true }
flate2 = { version = "1", optional = true }
tar = { version = "0.4", optional = true }
[features]
default = ["import-compressed", "import-url"]
import-compressed = ["dep:bzip2", "dep:flate2", "dep:tar"]
import-url = ["dep:curl"]