[package]
name = "lino-objects-codec"
version = "0.2.1"
edition = "2021"
rust-version = "1.70"
description = "A library to encode/decode objects to/from links notation"
license = "Unlicense"
repository = "https://github.com/link-foundation/lino-objects-codec"
documentation = "https://docs.rs/lino-objects-codec"
readme = "README.md"
keywords = ["links-notation", "serialization", "codec", "object-graph", "circular-references"]
categories = ["encoding", "parser-implementations"]
[dependencies]
links-notation = "0.13.0"
base64 = "0.22"
[dev-dependencies]
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
use_self = "allow"
unreadable_literal = "allow"
missing_const_for_fn = "allow"
cast_precision_loss = "allow"
cast_lossless = "allow"
must_use_candidate = "allow"
redundant_closure_for_method_calls = "allow"
ignored_unit_patterns = "allow"
uninlined_format_args = "allow"
derive_partial_eq_without_eq = "allow"
doc_markdown = "allow"
option_if_let_else = "allow"
unused_self = "allow"
if_not_else = "allow"
too_many_lines = "allow"
redundant_clone = "allow"
assigning_clones = "allow"
inefficient_to_string = "allow"
approx_constant = "allow"
similar_names = "allow"
[profile.release]
lto = true
codegen-units = 1
strip = true