# 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 = "simple_endian" version = "0.3.2" authors = ["Erica Stith "] description = "A create for defining endianness within your data structures, to make handling portable data structures simpler." homepage = "https://github.com/rexlunae/simple-endian-rs" documentation = "https://docs.rs/simple_endian/" readme = "README.md" keywords = [ "endian", "byteorder", "big-endian", "little-endian", "data-structures", ] license = "MIT" repository = "https://github.com/rexlunae/simple-endian-rs" [[bench]] name = "benches" harness = false [dev-dependencies.bencher] version = "0.1.5" [dev-dependencies.memmap] version = "0.7" [features] big_endian = [] bitwise = ["integer_impls"] both_endian = [ "big_endian", "little_endian", ] byte_impls = [] comparisons = [] default = [ "bitwise", "comparisons", "format", "math_ops", "neg_ops", "shift_ops", "both_endian", "float_impls", "integer_impls", "byte_impls", ] float_impls = ["integer_impls"] format = [] integer_impls = [] little_endian = [] math_ops = [] neg_ops = [] shift_ops = []