[package]
edition = "2024"
rust-version = "1.92"
name = "gorbie-commonmark-backend"
version = "0.24.0"
authors = [
"Erlend Walstad",
"Jan-Paul Bultmann <jp@bultmann.eu>",
]
build = false
include = [
"**/*.rs",
"LICENSE-MIT",
"LICENSE-APACHE",
"Cargo.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared code for gorbie_commonmark and gorbie_commonmark_macros"
documentation = "https://docs.rs/gorbie-commonmark-backend"
readme = "README.md"
keywords = [
"commonmark",
"egui",
]
categories = ["gui"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/triblespace/gorbie_commonmark"
[features]
better_syntax_highlighting = ["dep:syntect"]
embedded_image = ["dep:data-url"]
[lib]
name = "gorbie_commonmark_backend"
path = "src/lib.rs"
[dependencies.data-url]
version = "0.3.1"
optional = true
[dependencies.egui]
version = "0.34"
default-features = false
[dependencies.egui_extras]
version = "0.34"
default-features = false
[dependencies.pulldown-cmark]
version = "0.13"
default-features = false
[dependencies.syntect]
version = "5.0.0"
features = ["default-fancy"]
optional = true
default-features = false