[package] name = "rdeck" version = "0.2.0" authors = ["binarycat "] edition = "2021" description = "a simple library for choosing distinct random elements" readme = "README.md" repository = "https://git.envs.net/binarycat/rdeck" license = "MIT" categories = ["game-development", "algorithms", "data-structures"] keywords = ["random", "distinct", "unique", "pick", "choose"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] rand_core = "0.6.4" [dev-dependencies] rand_core = { version = "0.6.4", features = ["getrandom"] } [[example]] path = "example/playingcards.rs" name = "playingcards"