# 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 = "bitendian" version = "0.2.0" authors = ["Aatif Syed "] description = "Ergonomic library for reading/writing numbers in big-endian and little-endian with async support." homepage = "https://github.com/aatifsyed/bitendian" documentation = "https://docs.rs/bitendian" readme = "README.md" keywords = [ "endian", "binary", "async", "tokio", "futures", ] categories = [ "encoding", "parsing", "no-std", "asynchronous", "embedded", ] license = "MIT OR Apache-2.0" repository = "https://github.com/aatifsyed/bitendian" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "do_doc_cfg", ] [dependencies.futures-io] version = "0.3.29" optional = true [dependencies.pin-project] version = "1.1.3" optional = true [dependencies.tokio] version = "1.33.0" features = ["io-std"] optional = true default-features = false [dev-dependencies.async-fs] version = "2.1.0" [dev-dependencies.byteorder] version = "1.5.0" [dev-dependencies.futures] version = "0.3.29" [dev-dependencies.tempfile] version = "3.8.1" [dev-dependencies.tokio] version = "1.33.0" features = [ "rt", "fs", "io-util", ] [features] default = ["std"] full = [ "std", "futures", "tokio", ] futures = [ "dep:futures-io", "dep:pin-project", "std", ] std = [] tokio = [ "dep:tokio", "dep:pin-project", "std", ]