# 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 = "rmodem" version = "0.1.1" authors = ["rmodem developers"] description = "XMODEM (and variants) implementation in no-std Rust" readme = "README.md" keywords = [ "xmodem", "ymodem", "zmodem", "serial", ] categories = [ "embedded", "network-programming", "no-std", ] license = "AGPL-3.0-or-later" repository = "https://codeberg.org/weathered-steel/rmodem" [dependencies.clap] version = "4.5" features = ["derive"] optional = true [dependencies.env_logger] version = "0.11" optional = true [dependencies.log] version = "0.4" optional = true [dependencies.serialport] version = "4.3" optional = true [dev-dependencies.crc16] version = "0.4" [features] 1k = [] cli = [ "clap", "log", "serialport", ] crc = [] default = [ "1k", "crc", ] log = [ "dep:log", "env_logger", ]