[package]
name = "quorum-cli"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
rust-version.workspace = true
description = "Quorum CLI: the quorum binary."
readme = "README.md"
homepage = "https://github.com/accillion/quorum"
keywords = ["code-review", "consensus", "git", "cli"]
categories = ["command-line-utilities", "development-tools"]
[package.metadata.wix]
upgrade-guid = "D13F6C4C-80EE-4A36-9CA5-9A5A24430604"
path-guid = "7269039C-65BA-42BF-860E-819421A98817"
license = false
eula = false
[[bin]]
name = "quorum"
path = "src/main.rs"
[dependencies]
quorum-core = { path = "../quorum-core", version = "0.2.1" }
quorum-lippa-client = { path = "../quorum-lippa-client", version = "0.2.1" }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
tokio = { version = "1", features = ["rt", "macros", "time"] }
clap = { version = "4", features = ["derive"] }
rpassword = "7"
toml = "0.8"
time = { version = "0.3", features = ["formatting", "macros"] }
rand = "0.8"
ratatui = "0.29"
crossterm = "0.28"
git2 = { version = "0.20", default-features = false, features = ["vendored-libgit2"] }
[dev-dependencies]
tempfile = "3"
mockito = "1"
assert_cmd = "2"
predicates = "3"
git2 = { version = "0.20", default-features = false, features = ["vendored-libgit2"] }
rusqlite = { version = "0.32", features = ["bundled"] }
time = { version = "0.3", features = ["formatting", "macros", "parsing"] }
ratatui = "0.29"
crossterm = "0.28"
url = "2"