egui_markdown 0.1.0

A markdown parser and renderer for egui
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.80"
name = "egui_markdown"
version = "0.1.0"
build = false
include = [
    "**/*.rs",
    "Cargo.toml",
    "LICENSE-MIT",
    "LICENSE-APACHE",
    "README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A markdown parser and renderer for egui"
homepage = "https://github.com/iamseeley/egui_markdown"
documentation = "https://docs.rs/egui_markdown"
readme = "README.md"
keywords = [
    "egui",
    "markdown",
    "gui",
    "commonmark",
]
categories = [
    "gui",
    "graphics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/iamseeley/egui_markdown"

[features]
default = ["syntax_highlighting"]
images = [
    "egui_extras/image",
    "egui_extras/http",
]
svg = ["egui_extras/svg"]
syntax_highlighting = [
    "egui_extras/syntect",
    "dep:syntect",
]

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

[[example]]
name = "advanced"
path = "examples/advanced.rs"

[[example]]
name = "simple"
path = "examples/simple.rs"

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

[dependencies.egui]
version = "0.33"
default-features = false

[dependencies.egui_extras]
version = "0.33"
default-features = false

[dependencies.epaint]
version = "0.33"
default-features = false

[dependencies.pulldown-cmark]
version = "0.13.0"

[dependencies.syntect]
version = "5"
features = [
    "default-syntaxes",
    "default-themes",
    "regex-fancy",
]
optional = true
default-features = false

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

[dev-dependencies.eframe]
version = "0.33"
features = [
    "default_fonts",
    "glow",
]
default-features = true

[dev-dependencies.egui_extras]
version = "0.33"
features = ["syntect"]

[dev-dependencies.env_logger]
version = "0.11"