# 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" name = "coe" version = "0.2.2" authors = ["Jonathan Schleucher"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "coe is a full implementation of the CoEv2 protocol by Technische Alternative" readme = "README.md" keywords = ["coe"] categories = [ "network-programming", "no-std", "no-std::no-alloc", ] license = "MIT-0" repository = "https://github.com/curatorsigma/coe-rs" [lib] name = "coe" path = "src/lib.rs" [[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"] [dependencies.serde] version = "1.0.210" features = ["derive"] optional = true default-features = false [dev-dependencies.tokio] version = "1.40.0" features = [ "macros", "rt-multi-thread", "net", "time", ] [features] alloc = ["serde?/alloc"] default = ["std"] serde = ["dep:serde"] std = ["alloc"] [lints.rust] unsafe_code = "forbid"