-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
40 lines (36 loc) · 1.33 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
[package]
name = "quickenv"
version = "0.3.10"
authors = ["Markus Unterwaditzer <[email protected]>"]
edition = "2021"
description = "An unintrusive environment manager"
license = "MIT"
readme = "README.md"
repository = "https://github.com/untitaker/quickenv"
homepage = "https://github.com/untitaker/quickenv"
documentation = "https://github.com/untitaker/quickenv"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.58"
blake3 = "1.3.1"
# Disable clap's suggestions feature, because it sometimes suggests nonsense:
# https://github.com/clap-rs/clap/discussions/3962
clap = { version = "4", features = ["derive", "std", "color"], default-features = false }
console = { version = "0.15.0", default-features = false }
ctrlc = "3.2.2"
dialoguer = { version = "0.11.0", default-features = false }
env_logger = { version = "0.11.5", default-features = false }
exec = "0.3.1"
hex = "0.4.3"
log = "0.4.17"
tempfile = "3.3.0"
# using fork because we're requiring this bugfix:
# https://github.com/ogham/rust-term-grid/pull/14
uutils_term_grid = "0.6.0"
thiserror = "1.0.31"
which = "7"
[dev-dependencies]
insta = { version = "1.41.0", features = ["filters"], default-features = false }
insta-cmd = "0.6.0"
maplit = "1.0.2"
regex = { version = "1.6.0", default-features = false }