[package]
edition = "2021"
rust-version = "1.81"
name = "quorum-cli"
version = "0.3.0"
authors = ["Rolf Larsen"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Quorum CLI: the quorum binary."
homepage = "https://github.com/accillion/quorum"
readme = "README.md"
keywords = [
"code-review",
"consensus",
"git",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/accillion/quorum"
[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"
[[test]]
name = "auth_flow"
path = "tests/auth_flow.rs"
[[test]]
name = "bundle_assembly"
path = "tests/bundle_assembly.rs"
[[test]]
name = "convention_read"
path = "tests/convention_read.rs"
[[test]]
name = "convention_write"
path = "tests/convention_write.rs"
[[test]]
name = "dismissals_filter"
path = "tests/dismissals_filter.rs"
[[test]]
name = "dismissals_store"
path = "tests/dismissals_store.rs"
[[test]]
name = "end_to_end"
path = "tests/end_to_end.rs"
[[test]]
name = "hook_mode"
path = "tests/hook_mode.rs"
[[test]]
name = "hooks_lifecycle"
path = "tests/hooks_lifecycle.rs"
[[test]]
name = "non_interactive_auth"
path = "tests/non_interactive_auth.rs"
[[test]]
name = "range_diff"
path = "tests/range_diff.rs"
[[test]]
name = "render"
path = "tests/render.rs"
[[test]]
name = "secret_redaction"
path = "tests/secret_redaction.rs"
[[test]]
name = "tui_smoke"
path = "tests/tui_smoke.rs"
[[test]]
name = "wire_mapping"
path = "tests/wire_mapping.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.28"
[dependencies.git2]
version = "0.20"
features = ["vendored-libgit2"]
default-features = false
[dependencies.quorum-core]
version = "0.3.0"
[dependencies.quorum-lippa-client]
version = "0.3.0"
[dependencies.rand]
version = "0.8"
[dependencies.ratatui]
version = "0.29"
[dependencies.rpassword]
version = "7"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.time]
version = "0.3"
features = [
"formatting",
"macros",
]
[dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
"time",
]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.crossterm]
version = "0.28"
[dev-dependencies.git2]
version = "0.20"
features = ["vendored-libgit2"]
default-features = false
[dev-dependencies.mockito]
version = "1"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.ratatui]
version = "0.29"
[dev-dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.time]
version = "0.3"
features = [
"formatting",
"macros",
"parsing",
]
[dev-dependencies.url]
version = "2"