[package] name = "termioff" version = "0.1.0" # change with html_root_url in lib.rs edition = "2021" authors = ["nomissbowling "] description = "terminal utilities for Rust with termion" keywords = ["stdout", "stdin", "termion", "console"] categories = ["development-tools", "game-development", "command-line-utilities", "command-line-interface"] license = "MIT" documentation = "https://docs.rs/termioff/" homepage = "https://crates.io/crates/termioff" repository = "https://github.com/nomissbowling/termioff" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] # termion = { version = "3.0.0" } # 2.0.1 # termion = { git = "https://github.com/redox-os/termion.git" } # 2.0.3 termion = { version = "1.5.5" } # this patch works with termion 1.5.5 [patch.crates-io] # termion = { git = "https://gitlab.redox-os.org/Jezza/termion.git", branch = "windows-support" } # 2018 termion = { git = "https://github.com/nomissbowling/termion-win.git", branch = "windows-support" }