syncdoc 0.2.3

Procedural macro attributes to inject documentation from external files
Documentation
[[bin]]
name = "syncdoc"
path = "src/cli.rs"
required-features = ["cli"]

[package]
description = "Procedural macro attributes to inject documentation from external files"
documentation = "https://docs.rs/syncdoc"
edition.workspace = true
homepage = "https://github.com/lmmx/syncdoc"
include = ["README.md", "src/**/*"]
license.workspace = true
name = "syncdoc"
readme = "README.md"
repository.workspace = true
rust-version.workspace = true
version = "0.2.3"

[package.metadata.binstall]
pkg-fmt = "tgz"
pkg-url = "https://github.com/lmmx/syncdoc/releases/download/syncdoc-v{ version }/syncdoc-{ target }-v{ version }.tar.gz"

[package.metadata.binstall.overrides.aarch64-pc-windows-msvc]
pkg-fmt = "zip"
pkg-url = "https://github.com/lmmx/syncdoc/releases/download/syncdoc-v{ version }/syncdoc-aarch64-pc-windows-msvc-v{ version }.zip"

[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"
pkg-url = "https://github.com/lmmx/syncdoc/releases/download/syncdoc-v{ version }/syncdoc-x86_64-pc-windows-msvc-v{ version }.zip"

[features]
cli = ["dep:facet", "dep:facet-args", "dep:syncdoc-migrate"]
default = []

[lib]
proc-macro = true

[dependencies]
proc-macro2.workspace = true
syncdoc-core = { workspace = true }

# Optional dependencies for CLI
facet = { optional = true, workspace = true }
facet-args = { optional = true, workspace = true }
syncdoc-migrate = { optional = true, workspace = true }

[dev-dependencies]
insta.workspace = true
rust-format.workspace = true

# [lints.clippy]
# all = "deny"
# cargo = "deny"
# pedantic = "deny"
#
# [lints.rust]
# missing_docs = "deny"
# unsafe_code = "forbid"

[package.metadata.syncdoc]
docs-path = "docs"