[package]
edition = "2024"
name = "okf-core"
version = "0.2.5"
authors = ["Walter Higgins <walter.higgins@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure-Rust implementation of the Open Knowledge Format (OKF) v0.2 specification: parser, model, validator, provenance/trust/attestation families, link graph, and index/log tooling."
homepage = "https://github.com/W4G1/okf"
documentation = "https://docs.rs/okf-core"
readme = "README.md"
keywords = [
"okf",
"knowledge-base",
"markdown",
"frontmatter",
"agents",
]
categories = [
"command-line-utilities",
"parser-implementations",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/W4G1/okf"
[lib]
name = "okf_core"
path = "src/lib.rs"
[[test]]
name = "anchors"
path = "tests/anchors.rs"
[[test]]
name = "bundle"
path = "tests/bundle.rs"
[[test]]
name = "concept_id"
path = "tests/concept_id.rs"
[[test]]
name = "diff"
path = "tests/diff.rs"
[[test]]
name = "document"
path = "tests/document.rs"
[[test]]
name = "fix"
path = "tests/fix.rs"
[[test]]
name = "index"
path = "tests/index.rs"
[[test]]
name = "links"
path = "tests/links.rs"
[[test]]
name = "markdown"
path = "tests/markdown.rs"
[[test]]
name = "refactor"
path = "tests/refactor.rs"
[[test]]
name = "scaffold"
path = "tests/scaffold.rs"
[[test]]
name = "traits"
path = "tests/traits.rs"
[[test]]
name = "yaml"
path = "tests/yaml.rs"
[dependencies]
[dev-dependencies]