[package]
edition = "2024"
name = "fml"
version = "0.1.0"
authors = ["kaii"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Friendly Markup Language"
readme = "README.md"
keywords = [
"markup",
"markup-language",
"parser",
]
categories = [
"data-structures",
"parser-implementations",
"text-processing",
]
license = "AGPL-3.0-or-later"
repository = "https://codeberg.org/Starling/fml"
[features]
parser = []
[lib]
name = "fml"
path = "src/lib.rs"
[dependencies.chumsky]
version = "0.13.0"
features = ["regex"]
[lints.clippy]
cast_precision_loss = "allow"
copy_iterator = "allow"
doc_broken_link = "deny"
doc_markdown = "allow"
enum_glob_use = "allow"
explicit_deref_methods = "allow"
float_cmp = "deny"
format_collect = "deny"
format_push_string = "deny"
from_iter_instead_of_collect = "allow"
inline_always = "allow"
iter_not_returning_iterator = "deny"
linkedlist = "allow"
match_wildcard_for_single_variants = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
redundant_else = "allow"
self_only_used_in_recursion = "allow"
unused_async = "allow"
[lints.clippy.cargo]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1