# 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 = "2018" rust-version = "1.31.0" name = "xbitwise" version = "0.1.0" authors = ["Luis Miguel Báez "] exclude = ["*.md"] include = [ "**/*.rs", "Cargo.toml", ] description = "A Rust library that extends the basic functionality of bitwise operations" readme = "README.md" keywords = [ "bitwise", "integer", ] categories = ["bitwise"] license = "MIT" repository = "https://github.com/LuisMBaezCo/xbitwise" [lib] name = "xbitwise" crate-type = ["lib"] path = "src/lib.rs" edition = "2018" [dependencies] [features] default = [ "signed", "unsigned", ] i128 = [] i16 = [] i32 = [] i64 = [] i8 = [] signed = [ "i8", "i16", "i32", "i64", "i128", ] u128 = [] u16 = [] u32 = [] u64 = [] u8 = [] unsigned = [ "u8", "u16", "u32", "u64", "u128", ]