[package]
edition = "2024"
name = "mxp"
version = "1.0.0"
authors = ["Joshua Booth <joshua.n.booth@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of the MXP (Mud eXtension Protocol) standard"
readme = false
license = "MIT"
repository = "https://github.com/jnbooth/mxp"
resolver = "2"
[features]
serde = [
"dep:serde",
"flagset/serde",
]
[lib]
name = "mxp"
path = "src/lib.rs"
[dependencies.flagset]
version = "0.4.7"
[dependencies.html-escape]
version = "0.2.13"
[dependencies.serde]
version = "1.0.228"
optional = true
[dependencies.uncased]
version = "0.9.10"
[lints.clippy]
doc_markdown = "allow"
many_single_char_names = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_inception = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
struct_excessive_bools = "allow"
struct_field_names = "allow"
too_many_lines = "allow"
unreadable_literal = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1