summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 1e98b2997e44386ff9f68434b1971c1809648eae (plain)
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
[package]
name = "shackle"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4.1.8", features = ["derive"] }
git2 = { version = "0.16.1", default-features = false, features = ["vendored-libgit2"] }
nix = { version = "0.26.2", default-features = false, features = ["user"] }
nom = "7.1.3"
rexpect = "0.5.0"
rustyline = { version = "11.0.0", default-features = false }
shlex = "1.1.0"
thiserror = "1.0.38"
user-info = { path = "user-info" }

[dev-dependencies]
anyhow = "1.0.69"
assert_cmd = "2.0.8"
get-port = "4.0.0"
once_cell = "1.17.1"
tempfile = "3.4.0"

[workspace]