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