[package] name = "proceed" description = "A simple rust cli abstraction for accepting user-input." version = "0.1.0" authors = ["Alexander Dean-Kennedy "] edition = "2018" license = "MIT" readme = "README.md" repository = "https://git.sr.ht/~dstar4138/proceed" keywords = [ "cli", "term", "terminal", "input", "ui" ] categories = [ "command-line-interface", "command-line-utilities" ] [features] # By default, we are light-weight. No need to include any dependencies (only std). default = [] # However, if you are on *nix/macos and want the terminal to do getch cleanly, # you can enable the `term` feature. Please check the library documentation for # more details on how this is used. term = ["termios"] [dependencies] termios = { version = "0.3", optional = true } # We should genereate all features by default. [package.metadata.docs.rs] all-features = true # Trying out this release thing to make it easier to keep everything in sync. [package.metadata.release] no-dev-version = true