[dependencies.serde]
default-features = false
features = ["derive"]
optional = true
version = "1.0.210"
[dev-dependencies.tokio]
features = ["macros", "rt-multi-thread", "net", "time"]
version = "1.40.0"
[[example]]
name = "01_start_here"
path = "examples/01_start_here.rs"
required-features = ["alloc"]
[[example]]
name = "02_send_date"
path = "examples/02_send_date.rs"
required-features = ["alloc"]
[features]
alloc = ["serde?/alloc"]
default = ["std"]
serde = ["dep:serde"]
std = ["alloc"]
[lib]
name = "coe"
path = "src/lib.rs"
[lints.rust]
unsafe_code = "forbid"
[package]
authors = ["Jonathan Schleucher"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["network-programming", "no-std", "no-std::no-alloc"]
description = "coe is a full implementation of the CoEv2 protocol by Technische Alternative"
edition = "2021"
keywords = ["coe"]
license = "MIT-0"
name = "coe"
readme = "README.md"
repository = "https://github.com/curatorsigma/coe-rs"
version = "0.2.1"