[package]
edition = "2024"
rust-version = "1.92"
name = "supersigil-parser"
version = "0.8.0"
build = false
exclude = ["specs/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parsing pipeline for supersigil Markdown spec documents"
homepage = "https://supersigil.org"
readme = "README.md"
keywords = [
"specification",
"markdown",
"parser",
"verification",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jonisavo/supersigil"
[lib]
name = "supersigil_parser"
path = "src/lib.rs"
[[test]]
name = "fixture_integration_tests"
path = "tests/fixture_integration_tests.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[[test]]
name = "unit_tests"
path = "tests/unit_tests.rs"
[dependencies.markdown]
version = "1.0.0"
[dependencies.quick-xml]
version = "0.39.2"
[dependencies.supersigil-core]
version = "=0.8.0"
[dependencies.yaml_serde]
version = "0.10.4"
[dev-dependencies.proptest]
version = "1.10.0"
[dev-dependencies.tempfile]
version = "3.27.0"
[lints.clippy]
allow_attributes_without_reason = "warn"
as_pointer_underscore = "warn"
assertions_on_result_states = "warn"
cargo_common_metadata = "allow"
clone_on_ref_ptr = "warn"
deref_by_slicing = "warn"
disallowed_script_idents = "warn"
empty_drop = "warn"
empty_enum_variants_with_brackets = "warn"
empty_structs_with_brackets = "warn"
fn_to_numeric_cast_any = "warn"
if_then_some_else_none = "warn"
implicit_clone = "warn"
map_err_ignore = "warn"
multiple_crate_versions = "allow"
redundant_type_annotations = "warn"
renamed_function_params = "warn"
semicolon_outside_block = "warn"
undocumented_unsafe_blocks = "warn"
unnecessary_safety_comment = "warn"
unnecessary_safety_doc = "warn"
unneeded_field_pattern = "warn"
unused_result_ok = "warn"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.complexity]
level = "warn"
priority = -1
[lints.clippy.correctness]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.clippy.style]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "warn"
priority = -1
[lints.rust]
ambiguous_negative_literals = "warn"
missing_debug_implementations = "warn"
missing_docs = "warn"
redundant_imports = "warn"
redundant_lifetimes = "warn"
trivial_numeric_casts = "warn"
unsafe_op_in_unsafe_fn = "warn"
unused_lifetimes = "warn"