[package]
edition = "2021"
rust-version = "1.74"
name = "okf"
version = "0.1.0-alpha.1"
authors = ["Walter van der Giessen <waltervdgiessen@gmail.com>"]
build = false
exclude = [".gitignore"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure-Rust, zero-dependency implementation of the Open Knowledge Format (OKF) v0.1: parser, model, validator, link graph, and index/log tooling."
homepage = "https://github.com/GoogleCloudPlatform/knowledge-catalog/tree/main/okf"
readme = "README.md"
keywords = [
"okf",
"knowledge",
"markdown",
"frontmatter",
"metadata",
]
categories = [
"parser-implementations",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/W4G1/okf"
[lib]
name = "okf"
path = "src/lib.rs"
[[bin]]
name = "okf"
path = "src/bin/okf.rs"
[[test]]
name = "bundle"
path = "tests/bundle.rs"
[[test]]
name = "document"
path = "tests/document.rs"
[[test]]
name = "index"
path = "tests/index.rs"
[[test]]
name = "links"
path = "tests/links.rs"
[[test]]
name = "yaml"
path = "tests/yaml.rs"
[dependencies]