[package]
edition = "2021"
name = "callisto-cli"
version = "0.3.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Callisto Release Engine — Polyglot monorepo versioning and release management CLI."
readme = "README.md"
license = "AGPL-3.0-only"
repository = "https://github.com/orin-dx/callisto"
[features]
cargo = ["callisto-graph/cargo"]
default = [
"cargo",
"npm",
]
inference = ["callisto-graph/inference"]
npm = ["callisto-graph/npm"]
wrapper = []
[lib]
name = "callisto_cli"
path = "src/lib.rs"
[[bin]]
name = "callisto"
path = "src/main.rs"
[[test]]
name = "changelog_tests"
path = "tests/changelog_tests.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "dry_run_invariant_tests"
path = "tests/dry_run_invariant_tests.rs"
[[test]]
name = "e2e_tests"
path = "tests/e2e_tests.rs"
[[test]]
name = "lifecycle_e2e_tests"
path = "tests/lifecycle_e2e_tests.rs"
[[test]]
name = "pre_mode_tests"
path = "tests/pre_mode_tests.rs"
[[test]]
name = "strict_flag_tests"
path = "tests/strict_flag_tests.rs"
[[test]]
name = "trycmd_tests"
path = "tests/trycmd_tests.rs"
[[test]]
name = "validate_tests"
path = "tests/validate_tests.rs"
[dependencies.anstream]
version = "0.6"
[dependencies.callisto-changelog]
version = "0.3.0"
[dependencies.callisto-conventional]
version = "0.3.0"
[dependencies.callisto-format]
version = "0.3.0"
[dependencies.callisto-graph]
version = "0.3.0"
[dependencies.callisto-manifests]
version = "0.3.0"
[dependencies.callisto-model]
version = "0.3.0"
[dependencies.callisto-vcs]
version = "0.3.0"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.clap_complete]
version = "4"
[dependencies.comfy-table]
version = "7"
[dependencies.dialoguer]
version = "0.11"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.miette]
version = "7"
features = ["fancy"]
[dependencies.path-slash]
version = "0.2"
[dependencies.schemars]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.similar]
version = "2"
features = ["inline"]
[dependencies.thiserror]
version = "1"
[dev-dependencies.insta]
version = "1.41"
features = [
"json",
"redactions",
]
[dev-dependencies.rstest]
version = "0.23"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.trycmd]
version = "0.15"
[lints.clippy]
expect_used = "allow"
let_underscore_must_use = "deny"
let_underscore_untyped = "deny"
map_err_ignore = "deny"
module_name_repetitions = "allow"
must_use_candidate = "allow"
unwrap_used = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
let_underscore_drop = "deny"
unsafe_code = "forbid"
unused_must_use = "deny"