[package] name = "coap-zero" version = "0.3.0" edition = "2021" rust-version = "1.65" description = "CoAP protocol implementation for no_std without alloc" repository = "https://git.openlogisticsfoundation.org/silicon-economy/libraries/serum/coap-zero" authors = [ "Fraunhofer IML Embedded Rust Group " ] license = "OLFL-1.3" keywords = ["coap", "no_std", "embedded", "communication", "lwm2m"] categories = ["embedded", "no-std", "no-std::no-alloc"] [package.metadata.cargo-udeps.ignore] normal = ["log"] # I don't know why cargo-udeps never finds the use of log #development = [] #build = [] [dependencies] bondrewd = { version = "0.1", features = ["derive"], default-features = false } embedded-nal = { version = "0.6" } embedded-hal = { version = "0.2", features = ["unproven"]} heapless = "0.7" nb = "1.0" log = "0.4" byteorder = "1.4" iri-string = { version = "0.7", default-features = false } embedded-timers = "0.2.0" [dev-dependencies] std-embedded-nal = { version = "0.1" } try-ascii = "1.0.0" simple_logger = "4.0" mockall = "0.11.0" lazy_static = "1.4"