[package] name = "geekbar_dialoguer" description = "A command line prompting library." version = "0.1.0" edition = "2018" authors = [ "Armin Ronacher ", "Pavan Kumar Sunkara " ] keywords = ["cli", "menu", "prompt"] categories = ["command-line-interface"] license = "MIT" homepage = "https://github.com/mitsuhiko/dialoguer" repository = "https://github.com/mitsuhiko/dialoguer" documentation = "https://docs.rs/dialoguer" readme = "README.md" [features] default = ["editor", "password"] editor = ["tempfile"] fuzzy-select = ["fuzzy-matcher", "unicode-segmentation"] history = [] password = ["zeroize"] completion = [] [dependencies] console = "0.15.0" tempfile = { version = "3", optional = true } zeroize = { version = "1.1.1", optional = true } fuzzy-matcher = { version = "0.3.7", optional = true } unicode-segmentation = {version = "1.9.0", optional = true}