[package]
edition = "2024"
rust-version = "1.96.0"
name = "esexpr-text"
version = "0.3.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ESExpr serialization text format."
homepage = "https://github.com/argon-lang/esexpr"
documentation = "https://docs.rs/esexpr-text"
readme = "README.md"
categories = ["encoding"]
license = "Apache-2.0"
repository = "https://github.com/argon-lang/esexpr"
[lib]
name = "esexpr_text"
path = "src/lib.rs"
[[test]]
name = "parsing"
path = "tests/parsing.rs"
[dependencies.esexpr]
version = "0.3.1"
default-features = false
[dependencies.half]
version = "2.7.1"
features = ["alloc"]
default-features = false
[dependencies.hexponent]
version = "0.3.1"
default-features = false
[dependencies.nom]
version = "8.0.0"
features = ["alloc"]
default-features = false
[dependencies.num-bigint]
version = "0.4.6"
default-features = false
[dev-dependencies.esexpr-json]
version = "0.3.1"
default-features = false
[dev-dependencies.serde_json]
version = "1.0.150"
features = [
"float_roundtrip",
"alloc",
]
default-features = false
[lints.clippy]
allow_attributes_without_reason = "deny"
as_pointer_underscore = "deny"
as_underscore = "deny"
collapsible_else_if = "allow"
elidable_lifetime_names = "allow"
ignored_unit_patterns = "allow"
match_wildcard_for_single_variants = "allow"
mismatching_type_param_order = "allow"
needless_lifetimes = "allow"
needless_pass_by_value = "allow"
similar_names = "allow"
single_match_else = "allow"
tabs_in_doc_comments = "allow"
too_many_lines = "allow"
unwrap_used = "deny"
wildcard_imports = "allow"
[lints.clippy.complexity]
level = "deny"
priority = -1
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.clippy.perf]
level = "deny"
priority = -1
[lints.clippy.style]
level = "deny"
priority = -1
[lints.clippy.suspicious]
level = "deny"
priority = -1
[lints.rust]
macro_use_extern_crate = "deny"
missing_docs = "deny"
unused_must_use = "deny"