[package]
name = "codexa"
version = "0.0.3"
edition = "2024"
rust-version = "1.85"
description = "A Git-native content compiler for building typed public and private knowledge artifacts."
license = "MIT"
repository = "https://github.com/orbyts/codexa"
homepage = "https://github.com/orbyts/codexa"
documentation = "https://docs.rs/codexa"
readme = "README.md"
keywords = ["markdown", "documentation", "publishing", "knowledge", "git"]
categories = ["command-line-utilities", "development-tools"]
include = [
"src/**",
"tests/**",
"examples/**",
"docs/**",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE",
"CHANGELOG.md",
]
[lib]
name = "codexa"
path = "src/lib.rs"
[[bin]]
name = "codexa"
path = "src/main.rs"
[dependencies]
pulldown-cmark = "0.13"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
sha2 = "0.10"
walkdir = "2.5"
[dev-dependencies]
tempfile = "3.20"