# 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" rust-version = "1.63" name = "spacepacket" version = "0.1.1" build = false exclude = [".github"] autobins = false autoexamples = false autotests = false autobenches = false description = "A CCSDS compliant spacepacket en/de-coder with CRC and Sink/Stream support." homepage = "https://github.com/ASU-cubesat/spacepacket" readme = "README.md" keywords = [ "ccsds", "bytes", "parser", "packets", ] categories = ["aerospace::space-protocols"] license = "MIT" license-file = "LICENSE" repository = "https://github.com/ASU-cubesat/spacepacket" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "spacepacket" path = "src/lib.rs" [dependencies.asynchronous-codec] version = "~0.6" optional = true [dependencies.byteorder] version = "~1.4" [dependencies.bytes] version = "~1.4" optional = true [dependencies.crc] version = "3.0" optional = true [dependencies.lazy_static] version = "1.5.0" optional = true [dependencies.tokio-util] version = "~0.7" features = ["codec"] optional = true [dev-dependencies.futures] version = "~0.3" [dev-dependencies.rstest] version = "~0.15" [features] async-codec = [ "asynchronous-codec", "bytes", ] crc = ["dep:crc"] tctm = ["dep:lazy_static"] tokio-codec = [ "bytes", "tokio-util/codec", ]