[package]
edition = "2024"
name = "brief-core"
version = "0.3.0"
authors = ["Kirill Leventcov"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Compiler library for the Brief markup language: lexer, parser, AST, HTML/LLM emitters, formatter, and Markdown-to-Brief converter."
homepage = "https://docs.brief.kirillleventcov.com"
documentation = "https://docs.rs/brief-core"
readme = "README.md"
keywords = [
"markup",
"markdown",
"compiler",
"llm",
"brief",
]
categories = [
"text-processing",
"compilers",
"parsing",
]
license = "MIT"
repository = "https://github.com/kirillleventcov/brief"
[lib]
name = "brief"
path = "src/lib.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "conversion"
path = "tests/conversion.rs"
[[test]]
name = "fmt_semantic"
path = "tests/fmt_semantic.rs"
[[test]]
name = "v03_minification"
path = "tests/v03_minification.rs"
[[test]]
name = "watch"
path = "tests/watch.rs"
[dependencies.notify]
version = "8"
[dependencies.notify-debouncer-mini]
version = "0.7"
default-features = false
[dependencies.pulldown-cmark]
version = "0.13"
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.toml]
version = "0.8.23"
[dev-dependencies.tempfile]
version = "3"