# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "console-prompt" version = "0.1.5" authors = ["Jonathan Peterson @deadjakk"] description = "console_prompt is a very simple library for creating clean, thread-safe cli prompts for interactive cli programs in rust heavily relying on crossterm. I created this for a C2 client, but it could likely be used in anywhere you want an interactive prompt. The simplicity of it is what I think sets it apart from other projects" readme = "README.md" keywords = [ "cli", "prompt", "toolkit", ] categories = [ "command-line-interface", "command-line-utilities", ] license-file = "LICENSE" repository = "https://github.com/deadjakk/console-prompt" [lib] name = "console_prompt" path = "src/lib.rs" [[example]] name = "conversation" [dependencies.crossterm] version = "0.26.1" [dependencies.rustyline] version = "10.0.0"