src2md 0.1.4

Turn source code into a Markdown document with syntax highlighting, or extract it back.
Documentation
[package]
name = "src2md"
version = "0.1.4"
edition = "2024"
authors = ["Matias Hiltunen <https://github.com/MatiasHiltunen>"]
description = "Turn source code into a Markdown document with syntax highlighting, or extract it back."
license = "MIT"
repository = "https://github.com/MatiasHiltunen/src2md"
readme = "README.md"
keywords = ["markdown", "cli", "code", "extract", "docs"]
categories = ["command-line-utilities", "development-tools", "text-processing"]
documentation = "https://docs.rs/src2md"
homepage = "https://github.com/MatiasHiltunen/src2md"

[dependencies]
clap = { version = "4", features = ["derive"] }
ignore = "0.4"
content_inspector = "0.2"
memmap2 = "0.9.5"
tokio = { version = "1", features = ["fs", "io-util", "macros", "rt-multi-thread"] }
anyhow = "1.0"
log = "0.4.27"
env_logger = "0.11.8"
chrono = "0.4.40"
regex = "1.11.1"

[lib]
name = "src2md"
path = "src/lib.rs"

[[bin]]
name = "src2md"
path = "src/main.rs"

[dev-dependencies]
tempfile = "3"