pamoja-codec 0.1.17

Serialization and framing for pamoja: pluggable wire formats behind a common Codec trait.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.89"
name = "pamoja-codec"
version = "0.1.17"
authors = ["molexxxx"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Serialization and framing for pamoja: pluggable wire formats behind a common Codec trait."
homepage = "https://pamoja.molex.cloud"
documentation = "https://pamoja.molex.cloud/docs/"
readme = "README.md"
keywords = [
    "iot",
    "robotics",
    "drones",
    "embedded",
    "no-std",
]
categories = [
    "embedded",
    "no-std",
    "hardware-support",
    "network-programming",
    "science::robotics",
]
license = "MIT"
repository = "https://github.com/molexxxx/pamoja"

[features]
cbor = ["dep:ciborium"]
default = [
    "cbor",
    "json",
]
json = ["dep:serde_json"]

[lib]
name = "pamoja_codec"
path = "src/lib.rs"

[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"

[dependencies.ciborium]
version = "0.2"
optional = true

[dependencies.pamoja-core]
version = "0.1.17"
default-features = false

[dependencies.serde]
version = "1"
features = ["alloc"]
default-features = false

[dependencies.serde_json]
version = "1"
optional = true

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.serde]
version = "1"
features = ["derive"]

[lints.clippy]
all = "warn"

[lints.rust]
missing_docs = "deny"
unsafe_code = "warn"