[package]
edition = "2024"
rust-version = "1.85"
name = "codexa"
version = "0.0.3"
build = false
include = [
"src/**",
"tests/**",
"examples/**",
"docs/**",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE",
"CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Git-native content compiler for building typed public and private knowledge artifacts."
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",
]
license = "MIT"
repository = "https://github.com/orbyts/codexa"
[lib]
name = "codexa"
path = "src/lib.rs"
[[bin]]
name = "codexa"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "frontmatter"
path = "tests/frontmatter.rs"
[[test]]
name = "links"
path = "tests/links.rs"
[[test]]
name = "markdown"
path = "tests/markdown.rs"
[[test]]
name = "notion_adapter"
path = "tests/notion_adapter.rs"
[dependencies.pulldown-cmark]
version = "0.13"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.walkdir]
version = "2.5"
[dev-dependencies.tempfile]
version = "3.20"