# 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 = "mcumgr-smp" version = "0.7.0" authors = ["Sascha Zenglein "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "An implementation of the smp protocol for microcontrollers in pure rust." homepage = "https://github.com/Gessler-GmbH/smp-rs" readme = "README.md" keywords = [ "smp", "zephyr", "rtos", "mcumgr", ] categories = [ "embedded", "development-tools", ] license = "MIT OR Apache-2.0" repository = "https://github.com/Gessler-GmbH/smp-rs" [lib] name = "mcumgr_smp" path = "src/lib.rs" [dependencies.async-trait] version = "0.1" optional = true [dependencies.base64] version = "0.22" optional = true [dependencies.btleplug] version = "0.11" optional = true [dependencies.ciborium] version = "0.2" optional = true [dependencies.crc] version = "3.2" optional = true [dependencies.futures] version = "0.3" optional = true [dependencies.serde] version = "1" features = ["derive"] optional = true [dependencies.serde_bytes] version = "0.11" optional = true [dependencies.serialport] version = "4.5" optional = true [dependencies.thiserror] version = "1.0" [dependencies.tokio] version = "1.40" features = ["net"] optional = true [dependencies.uuid] version = "1.10" optional = true [features] async = [ "tokio", "async-trait", ] default = [ "transport-ble-async", "transport-serial", "transport-udp", "transport-udp-async", "payload-cbor", ] payload-cbor = [ "serde", "serde_bytes", "ciborium", ] transport-ble-async = [ "uuid", "btleplug", "async", "futures", ] transport-serial = [ "base64", "crc", "serialport", ] transport-udp = [] transport-udp-async = [ "async", "tokio/net", ]