# 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 = "rw-utils" version = "0.0.1" authors = ["Alexander Schütz "] description = "Collection of utilities that enhance the rust Read and Write traits by providing various utility method for reading/writing structured data." homepage = "https://github.com/AlexanderSchuetz97/rw-utils" readme = "README.md" keywords = [ "read", "write", "endian", ] categories = [ "encoding", "data-structures", ] license = "MIT OR Apache-2.0" [lib] crate-type = ["rlib"] [dependencies.encoding] version = "0.2.33" optional = true [dev-dependencies.encoding] version = "0.2.33" [dev-dependencies.leb128] version = "0.2.5" [dev-dependencies.static_assertions] version = "1.1.0" [features] all = [ "num_read", "num_write", "string_read", "string_write", "to_write", "from_read", "leb128_read", "leb128_write", ] from_read = [] leb128_read = [] leb128_write = [] num_read = [] num_write = [] string_read = [] string_write = ["encoding"] to_write = []