Commits on Source (289)
Showing
- .gitlab-ci.yml 49 additions, 0 deletions.gitlab-ci.yml
- .travis.yml 14 additions, 0 deletions.travis.yml
- CHANGELOG.md 121 additions, 0 deletionsCHANGELOG.md
- Cargo.toml 21 additions, 20 deletionsCargo.toml
- FUNDING.json 7 additions, 0 deletionsFUNDING.json
- README.md 173 additions, 22 deletionsREADME.md
- examples/alternate_screen.rs 17 additions, 0 deletionsexamples/alternate_screen.rs
- examples/alternate_screen_raw.rs 44 additions, 0 deletionsexamples/alternate_screen_raw.rs
- examples/async.rs 14 additions, 8 deletionsexamples/async.rs
- examples/click.rs 35 additions, 0 deletionsexamples/click.rs
- examples/color.rs 11 additions, 0 deletionsexamples/color.rs
- examples/detect_color.rs 19 additions, 0 deletionsexamples/detect_color.rs
- examples/is_tty.rs 11 additions, 0 deletionsexamples/is_tty.rs
- examples/keys.rs 27 additions, 20 deletionsexamples/keys.rs
- examples/mouse.rs 46 additions, 0 deletionsexamples/mouse.rs
- examples/rainbow.rs 66 additions, 0 deletionsexamples/rainbow.rs
- examples/read.rs 6 additions, 6 deletionsexamples/read.rs
- examples/rustc_fun.rs 24 additions, 0 deletionsexamples/rustc_fun.rs
- examples/simple.rs 23 additions, 12 deletionsexamples/simple.rs
- examples/truecolor.rs 12 additions, 0 deletionsexamples/truecolor.rs
.gitlab-ci.yml
0 → 100644
.travis.yml
0 → 100644
CHANGELOG.md
0 → 100644
[package] | ||
name = "termion" | ||
version = "0.1.0" | ||
authors = ["Ticki <Ticki@users.noreply.github.com>"] | ||
version = "4.0.4" | ||
authors = [ | ||
"ticki <Ticki@users.noreply.github.com>", | ||
"gycos <alexandre.bury@gmail.com>", | ||
"IGI-111 <igi-111@protonmail.com>", | ||
"Jeremy Soller <jackpot51@gmail.com>", | ||
] | ||
description = "A bindless library for manipulating terminals." | ||
repository = "https://gitlab.redox-os.org/redox-os/termion" | ||
documentation = "https://docs.rs/termion" | ||
license = "MIT" | ||
keywords = ["tty", "color", "terminal", "password", "tui"] | ||
exclude = ["target", "CHANGELOG.md", "image.png", "Cargo.lock"] | ||
[target.i686-unknown-linux-gnu.dependencies] | ||
libc = "0.2.8" | ||
[dependencies] | ||
numtoa = { version = "0.2.4"} | ||
serde = { version = "1.0", features = ["derive"], optional = true } | ||
[target.x86_64-unknown-linux-gnu.dependencies] | ||
libc = "0.2.8" | ||
[target.'cfg(not(target_os = "redox"))'.dependencies] | ||
libc = "0.2" | ||
[target.i686-unknown-linux-musl.dependencies] | ||
libc = "0.2.8" | ||
[target.x86_64-unknown-linux-musl.dependencies] | ||
libc = "0.2.8" | ||
[target.i686-apple-darwin.dependencies] | ||
libc = "0.2.8" | ||
[target.x86_64-apple-darwin.dependencies] | ||
libc = "0.2.8" | ||
[features] | ||
nightly = [] | ||
[target.'cfg(target_os = "redox")'.dependencies] | ||
redox_termios = "0.1.3" | ||
libredox = "0.1.3" |
FUNDING.json
0 → 100644
examples/alternate_screen.rs
0 → 100644
examples/alternate_screen_raw.rs
0 → 100644
examples/click.rs
0 → 100644
examples/color.rs
0 → 100644
examples/detect_color.rs
0 → 100644
examples/is_tty.rs
0 → 100644
examples/mouse.rs
0 → 100644
examples/rainbow.rs
0 → 100644
examples/rustc_fun.rs
0 → 100644
examples/truecolor.rs
0 → 100644