[package]
edition = "2024"
name = "okf"
version = "0.2.4"
authors = ["Walter van der Giessen <waltervdgiessen@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Open Knowledge Format (OKF) v0.2 in pure Rust: the `okf` CLI (validate, lint, inspect, index, graph, format, diff) plus the full okf-core library API re-exported, with zero dependencies."
homepage = "https://github.com/W4G1/okf"
documentation = "https://docs.rs/okf"
readme = "README.md"
keywords = [
"okf",
"knowledge",
"markdown",
"frontmatter",
"metadata",
]
categories = [
"command-line-utilities",
"parser-implementations",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/W4G1/okf"
[features]
default = ["validator"]
validator = ["dep:okf-validator"]
[lib]
name = "okf"
path = "src/lib.rs"
[[bin]]
name = "okf"
path = "src/main.rs"
required-features = ["validator"]
[[test]]
name = "cli_exit_codes"
path = "tests/cli_exit_codes.rs"
[[test]]
name = "cli_fix"
path = "tests/cli_fix.rs"
[[test]]
name = "cli_graph_json"
path = "tests/cli_graph_json.rs"
[[test]]
name = "cli_scaffold_fmt_links"
path = "tests/cli_scaffold_fmt_links.rs"
[dependencies.okf-core]
version = "0.2.4"
[dependencies.okf-validator]
version = "0.2.4"
optional = true