[package] name = "binary-io" version = "0.1.0" authors = ["Connor "] edition = "2018" description=""" A crate for reading and writing binary data files, according to LCS4. Also supports an extend version of the NBT format, as well as the ShadeNBT format. """ license="MIT OR Apache-2.0" repository="https://github.com/chorman0773/PokemonSMS-Rust" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = {version="1.0.111",optional=true} rand = {version="0.8",optional=true} uuid = {version="0.8.2",optional=true} fake-enum = "0.1.2" cryptostream = {version = "0.3",optional=true} openssl = { version = "0.10", features = ["vendored"], optional=true} zeroize = {version="1.1.0",optional=true} [features] nbt = [] shade = ["nbt"] random_uuid = ["rand"] uuid_v1 = ["uuid","uuid/v1","rand"] default = ["nbt"] crypto_shade = ["shade","cryptostream","openssl","zeroize"]