[package]
name = "hyperlit"
version = "0.1.0"
description = "A software documentation tool documentation embedded in source files"
keywords = ["documentation", "docs", "hyperlit", "literate"]
categories = ["template-engine", "command-line-utilities", "development-tools"]
license = "Apache-2.0"
repository = "https://github.com/manuel-woelker/hyperlit"
homepage = "https://github.com/manuel-woelker/hyperlit"
rust-version = "1.86.0"
edition = "2024"
[[bin]]
name = "hyperlit"
path = "src/hyperlit-cli.rs"
[dependencies]
hyperlit-core = { path = "../core", version = "0.1.0" }
hyperlit-runner = { path = "../runner", version = "0.1.0" }
hyperlit-base = { path = "../base", version = "0.1.0" }
hyperlit-extractor = { path = "../extractor", version = "0.1.0" }
clap = { version = "4.5.39", features = ["derive"] }
log = "0.4.27"
[build-dependencies]