mdansi 0.1.0

A blazing-fast Markdown-to-ANSI terminal renderer with built-in syntax highlighting
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.85"
name = "mdansi"
version = "0.1.0"
authors = ["Justin Huang"]
build = false
exclude = [
    ".github/",
    "tests/fixtures/",
    "scripts/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A blazing-fast Markdown-to-ANSI terminal renderer with built-in syntax highlighting"
homepage = "https://github.com/justinhuangcode/mdANSI"
documentation = "https://docs.rs/mdansi"
readme = "README.md"
keywords = [
    "markdown",
    "ansi",
    "terminal",
    "cli",
    "syntax-highlighting",
]
categories = [
    "command-line-utilities",
    "text-processing",
    "visualization",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/justinhuangcode/mdANSI"

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

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

[[test]]
name = "integration"
path = "tests/integration.rs"

[[bench]]
name = "render"
path = "benches/render.rs"
harness = false

[dependencies.clap]
version = "4"
features = [
    "derive",
    "env",
    "wrap_help",
]

[dependencies.comrak]
version = "0.31"
features = ["shortcodes"]
default-features = false

[dependencies.crossterm]
version = "0.28"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.strip-ansi-escapes]
version = "0.2"

[dependencies.syntect]
version = "5"
features = ["default-fancy"]
default-features = false

[dependencies.thiserror]
version = "2"

[dependencies.toml]
version = "0.8"

[dependencies.unicode-width]
version = "0.2"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.insta]
version = "1"
features = ["glob"]

[dev-dependencies.pretty_assertions]
version = "1"

[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true

[profile.release-fast]
lto = "thin"
codegen-units = 4
inherits = "release"