[package]
edition = "2021"
name = "callisto-graph"
version = "0.4.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Callisto Release Engine — Dependency DAG solver and topological cascade release planner."
readme = "README.md"
license = "AGPL-3.0-only"
repository = "https://github.com/orin-dx/callisto"
[features]
cargo = ["callisto-manifests/cargo"]
default = [
"cargo",
"npm",
]
inference = ["dep:callisto-conventional"]
npm = ["callisto-manifests/npm"]
[lib]
name = "callisto_graph"
path = "src/lib.rs"
[[test]]
name = "apply_persist_open_count_test"
path = "tests/apply_persist_open_count_test.rs"
[[test]]
name = "apply_tests"
path = "tests/apply_tests.rs"
[[test]]
name = "cascade_tests"
path = "tests/cascade_tests.rs"
[[test]]
name = "config_resolve_tests"
path = "tests/config_resolve_tests.rs"
[[test]]
name = "cross_ecosystem_diagnostic_test"
path = "tests/cross_ecosystem_diagnostic_test.rs"
[[test]]
name = "ecosystem_bugs_test"
path = "tests/ecosystem_bugs_test.rs"
[[test]]
name = "graph_tests"
path = "tests/graph_tests.rs"
[[test]]
name = "init_reconcile_test"
path = "tests/init_reconcile_test.rs"
[[test]]
name = "manifest_cache_test"
path = "tests/manifest_cache_test.rs"
[[test]]
name = "matrix_tests"
path = "tests/matrix_tests.rs"
[[test]]
name = "package_set_ecosystem_test"
path = "tests/package_set_ecosystem_test.rs"
[[test]]
name = "per_package_config_test"
path = "tests/per_package_config_test.rs"
[[test]]
name = "promoted_siblings_aggregate_test"
path = "tests/promoted_siblings_aggregate_test.rs"
[[test]]
name = "publish_target_ecosystem_mismatch_test"
path = "tests/publish_target_ecosystem_mismatch_test.rs"
[[test]]
name = "publish_tests"
path = "tests/publish_tests.rs"
[[test]]
name = "snapshot_tests"
path = "tests/snapshot_tests.rs"
[[test]]
name = "tag_sha_fabrication_test"
path = "tests/tag_sha_fabrication_test.rs"
[[test]]
name = "tags_laziness_test"
path = "tests/tags_laziness_test.rs"
[[test]]
name = "tags_tests"
path = "tests/tags_tests.rs"
[[test]]
name = "validate_command_tests"
path = "tests/validate_command_tests.rs"
[[test]]
name = "version_tests"
path = "tests/version_tests.rs"
[[test]]
name = "walk_comment_grep_test"
path = "tests/walk_comment_grep_test.rs"
[dependencies.callisto-changelog]
version = "0.4.0"
[dependencies.callisto-conventional]
version = "0.4.0"
optional = true
[dependencies.callisto-format]
version = "0.4.0"
[dependencies.callisto-manifests]
version = "0.4.0"
[dependencies.callisto-model]
version = "0.4.0"
[dependencies.callisto-vcs]
version = "0.4.0"
[dependencies.dunce]
version = "1"
[dependencies.globset]
version = "0.4"
[dependencies.ignore]
version = "0.4"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.miette]
version = "7"
features = ["fancy"]
[dependencies.petgraph]
version = "0.6"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = [
"preserve_order",
"preserve_order",
]
[dependencies.thiserror]
version = "1"
[dependencies.toml]
version = "0.8"
[dependencies.toml_edit]
version = "0.22"
[dependencies.yaml-rust2]
version = "0.11"
default-features = false
[dev-dependencies.insta]
version = "1.41"
features = [
"json",
"redactions",
]
[dev-dependencies.rstest]
version = "0.23"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[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"