mad 0.1.1

A fast Markdown terminal renderer with syntax highlighting
# 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 = "2024"
name = "mad"
version = "0.1.1"
authors = ["Ian Macalinao <me@ianm.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast Markdown terminal renderer with syntax highlighting"
homepage = "https://github.com/macalinao/mad"
readme = "README.md"
keywords = [
    "markdown",
    "terminal",
    "ansi",
    "cli",
    "renderer",
]
categories = [
    "command-line-utilities",
    "text-processing",
]
license = "Apache-2.0"
repository = "https://github.com/macalinao/mad"
resolver = "2"

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

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

[dependencies.bpaf]
version = "0.9"
features = [
    "derive",
    "bright-color",
    "dull-color",
    "docgen",
    "autocomplete",
]

[dependencies.markdown-to-ansi]
version = "0.2.1"

[dependencies.terminal_size]
version = "0.4"

[dev-dependencies.assert_cmd]
version = "2"

[dev-dependencies.predicates]
version = "3"

[dev-dependencies.tempfile]
version = "3"

[lints.clippy]
cognitive_complexity = "deny"
must_use_candidate = "allow"
std_instead_of_alloc = "deny"
std_instead_of_core = "deny"
too_many_lines = "deny"
unwrap_used = "deny"

[lints.clippy.complexity]
level = "deny"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1