[package]
edition = "2021"
rust-version = "1.85"
name = "ossctl-core"
version = "0.2.4"
authors = ["Jari Mustonen"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for ossctl: 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 = "ossctl_core"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[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