[package]
edition = "2024"
rust-version = "1.85"
name = "fy-docs"
version = "0.1.3"
authors = ["fengyangsi"]
build = false
include = [
"/src/**",
"/assets/**",
"/fy-spec/lib.typ",
"/docs/main.typ",
"/docs/fy-spec/lib.typ",
"/docs/modules/**",
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/README.zh-CN.md",
"/CHANGELOG.md",
"/CHANGELOG.zh-CN.md",
"/LICENSE-APACHE",
"/LICENSE-MIT",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cargo subcommand for building and previewing Typst specification documents"
homepage = "https://github.com/fengyangsi/fy-docs"
documentation = "https://docs.rs/fy-docs"
readme = "README.md"
keywords = [
"typst",
"documentation",
"cargo-subcommand",
"docs",
]
categories = [
"command-line-utilities",
"development-tools::cargo-plugins",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/fengyangsi/fy-docs"
[lib]
name = "fy_docs"
path = "src/lib.rs"
[[bin]]
name = "cargo-fy-docs"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.axum]
version = "0.8"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.notify]
version = "8"
[dependencies.open]
version = "5"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"net",
"signal",
]
[dependencies.toml]
version = "1"
[dependencies.tower-http]
version = "0.6"
features = ["fs"]