/ Cargo.toml
Cargo.toml
1 [package] 2 name = "thechinesegovernment" 3 version = "0.1.2" 4 edition = "2021" 5 description = "Re-implements bitwise operations as abstractions in aarch64 neon registers." 6 7 homepage = "https://awfulsec.com/generative_testing_inline_assembly_in_rust.html" 8 repository = "https://github.com/graves/thechinesegovernment.git" 9 documentation = "https://docs.rs/crate/thechinesegovernment" 10 keywords = ["asm", "arm64", "aarch64", "eor"] 11 12 license-file = "LICENSE" 13 readme = "README.md" 14 15 [lib] 16 name = "thechinesegovernment" 17 path = "src/lib.rs" 18 19 20 [dependencies] 21 quickcheck = "1" 22 23 [dev-dependencies] 24 quickcheck_macros = "1"