[package] name = "shackle-shell" version = "0.1.1" authors = ["Justin Wernick "] edition = "2021" description = "A shell for restricting access on a version control server" readme = "readme.md" # TODO: homepage = "" repository = "https://code.worthe-it.co.za/shackle.git/" license = "MIT" keywords = ["shell", "version-control", "git", "cli"] categories = ["command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = { version = "4.1.8", features = ["derive"] } comfy-table = "6.1.4" git2 = { version = "0.16.1", default-features = false, features = ["vendored-libgit2"] } nix = { version = "0.26.2", default-features = false, features = ["user"] } rustyline = { version = "11.0.0", default-features = false } shlex = "1.1.0" thiserror = "1.0.38" [dev-dependencies] anyhow = "1.0.69" assert_cmd = "2.0.8" predicates = "2.1.5" # match the version in assert_cmd get-port = "4.0.0" once_cell = "1.17.1" tempfile = "3.4.0" rexpect = "0.5.0" [profile.dev.package."*"] opt-level = 3 # incremental compile is rarely useful for dependencies since they change # infrequently, and having this on breaks sccache incremental = false [profile.release] lto = true