[package]
edition = "2024"
rust-version = "1.98"
name = "bearout"
version = "0.1.0"
build = false
include = [
"/CHANGELOG.md",
"/CONTRIBUTING.md",
"/Cargo.lock",
"/Cargo.toml",
"/LICENSE",
"/NOTICE.md",
"/README.md",
"/SECURITY.md",
"/docs/**",
"/src/**",
]
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A programmable contract engine for linked resources, documentation, and code"
readme = "README.md"
keywords = [
"cli",
"codegen",
"contracts",
"documentation",
"validation",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/malekpour/bearout"
[lib]
name = "bearout"
path = "src/lib.rs"
[[bin]]
name = "bearout"
path = "src/main.rs"
[dependencies.allocative]
version = "0.3.6"
[dependencies.anyhow]
version = "1.0.104"
[dependencies.blake3]
version = "1.8.2"
[dependencies.cap-std]
version = "4.0.3"
[dependencies.cap-tempfile]
version = "4.0.3"
[dependencies.clap]
version = "4.6.6"
features = ["derive"]
[dependencies.comrak]
version = "0.54.0"
default-features = false
[dependencies.jsonschema]
version = "0.53.0"
default-features = false
[dependencies.minijinja]
version = "2.24.0"
features = [
"fuel",
"json",
"loader",
]
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.spdx]
version = "0.13.5"
[dependencies.starlark]
version = "0.14.2"
[dependencies.toml_edit]
version = "0.25.13"
[dev-dependencies.tempfile]
version = "3.27.0"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
result_unit_err = "allow"
similar_names = "allow"
too_many_lines = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"