[package]
edition = "2021"
rust-version = "1.70"
name = "newdoc"
version = "2.18.6"
authors = ["Marek Suchánek <msuchane@redhat.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generate pre-populated module files formatted with AsciiDoc that are used in Red Hat and Fedora documentation."
homepage = "https://redhat-documentation.github.io/newdoc/"
documentation = "https://docs.rs/newdoc"
readme = "README.md"
keywords = [
"asciidoc",
"documentation",
"RedHat",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/redhat-documentation/newdoc/"
[lib]
name = "newdoc"
path = "src/lib.rs"
[[bin]]
name = "newdoc"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.askama]
version = "0.12"
[dependencies.bpaf]
version = "0.9"
features = [
"derive",
"bright-color",
]
[dependencies.color-eyre]
version = "0.6"
default-features = false
[dependencies.dialoguer]
version = "0.11"
[dependencies.directories]
version = "5.0"
[dependencies.figment]
version = "0.10"
features = ["toml"]
[dependencies.log]
version = "0.4"
[dependencies.regex]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.simplelog]
version = "0.12"
[dependencies.time]
version = "0.3"
[build-dependencies.bpaf]
version = "0.9"
features = [
"derive",
"docgen",
]
[build-dependencies.serde]
version = "1.0"
features = ["derive"]
[build-dependencies.time]
version = "0.3"