# 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 = "data-streams" version = "2.0.0-pre.2" authors = ["NightEule5 <24661563+NightEule5@users.noreply.github.com>"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Extension traits for reading and writing data with streams." homepage = "https://github.com/NightEule5/data-streams/" readme = "README.md" keywords = ["io"] license = "Apache-2.0" repository = "https://github.com/NightEule5/data-streams/" [lib] name = "data_streams" path = "src/lib.rs" [[test]] name = "ascii" path = "tests/ascii.rs" [[test]] name = "lib" path = "tests/lib.rs" [[test]] name = "utf8" path = "tests/utf8.rs" [dependencies.bytemuck] version = "1.16.1" [dependencies.num-traits] version = "0.2.19" features = ["i128"] [dependencies.simdutf8] version = "0.1.4" optional = true [dev-dependencies.proptest] version = "1.5.0" [features] alloc = [] default = [ "std", "alloc", ] std = [ "num-traits/std", "simdutf8/std", ] unstable = [ "unstable_specialization", "unstable_borrowed_buf", "unstable_uninit_slice", "unstable_ascii_char", ] unstable_ascii_char = [] unstable_borrowed_buf = [] unstable_specialization = [] unstable_uninit_slice = [] utf8 = ["simdutf8"]