[package]
edition = "2021"
rust-version = "1.85"
name = "shipshape-core"
version = "0.11.0"
authors = []
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for shipshape: contract normalizer, repo-fact detection, audit scoring, release engine, and the versioned protocol DTOs."
homepage = "https://github.com/jarimustonen/ossctl"
readme = "README.md"
keywords = [
"cli",
"ai",
"release",
"oss",
"readiness",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/jarimustonen/ossctl"
[lib]
name = "shipshape_core"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.toml]
version = "0.8"
[dependencies.toml_edit]
version = "0.23"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
manual_let_else = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1