[package] name = "drunkenbishop" version = "0.1.1" edition = "2021" description = "Implementation of the drunken bishop algorithm, with optional hex string parsing and SHA-256 pre-processing." license = "MIT" repository = "https://dreamerslegacy.xyz/git/hereticsibyl/drunkenbishop" documentation = "https://docs.rs/drunkenbishop" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] hex = { version = "0.4.3", optional = true } sha2 = { version = "0.10.6", optional = true } thiserror = "1.0.40" [features] default = [] hexparse = ["dep:hex"] hash = ["dep:sha2"]