[package]
edition = "2024"
name = "ought-spec"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser and clause IR for the .ought.md spec format"
homepage = "https://sosein.ai/products/ought"
readme = "README.md"
keywords = [
"testing",
"specs",
"llm",
"behavioral",
"deontic",
]
categories = ["development-tools::testing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/soseinai/ought"
resolver = "2"
[lib]
name = "ought_spec"
path = "src/lib.rs"
[[test]]
name = "parser_test"
path = "tests/parser_test.rs"
[[test]]
name = "smoke_test"
path = "tests/smoke_test.rs"
[dependencies.anyhow]
version = "1"
[dependencies.pulldown-cmark]
version = "0.13"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.rust]
warnings = "deny"