Commits on Source (150)
Showing
- .gitlab-ci.yml 49 additions, 0 deletions.gitlab-ci.yml
- .travis.yml 7 additions, 3 deletions.travis.yml
- CHANGELOG.md 38 additions, 0 deletionsCHANGELOG.md
- Cargo.toml 17 additions, 4 deletionsCargo.toml
- FUNDING.json 7 additions, 0 deletionsFUNDING.json
- README.md 26 additions, 7 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 12 additions, 6 deletionsexamples/async.rs
- examples/click.rs 15 additions, 11 deletionsexamples/click.rs
- examples/color.rs 2 additions, 1 deletionexamples/color.rs
- examples/commie.rs 0 additions, 41 deletionsexamples/commie.rs
- examples/detect_color.rs 19 additions, 0 deletionsexamples/detect_color.rs
- examples/keys.rs 21 additions, 9 deletionsexamples/keys.rs
- examples/mouse.rs 25 additions, 16 deletionsexamples/mouse.rs
- examples/rainbow.rs 25 additions, 10 deletionsexamples/rainbow.rs
- examples/read.rs 5 additions, 5 deletionsexamples/read.rs
- examples/rustc_fun.rs 9 additions, 9 deletionsexamples/rustc_fun.rs
- examples/simple.rs 14 additions, 5 deletionsexamples/simple.rs
- examples/truecolor.rs 1 addition, 1 deletionexamples/truecolor.rs
.gitlab-ci.yml
0 → 100644
[package] | [package] | ||
name = "termion" | name = "termion" | ||
version = "1.1.4" | version = "4.0.4" | ||
authors = ["ticki <Ticki@users.noreply.github.com>", "gycos <alexandre.bury@gmail.com>"] | 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." | description = "A bindless library for manipulating terminals." | ||
repository = "https://github.com/ticki/termion" | repository = "https://gitlab.redox-os.org/redox-os/termion" | ||
documentation = "https://docs.rs/termion" | documentation = "https://docs.rs/termion" | ||
license = "MIT" | license = "MIT" | ||
keywords = ["tty", "color", "terminal", "password", "tui"] | keywords = ["tty", "color", "terminal", "password", "tui"] | ||
exclude = ["target", "CHANGELOG.md", "image.png", "Cargo.lock"] | exclude = ["target", "CHANGELOG.md", "image.png", "Cargo.lock"] | ||
[dependencies] | |||
numtoa = { version = "0.2.4"} | |||
serde = { version = "1.0", features = ["derive"], optional = true } | |||
[target.'cfg(not(target_os = "redox"))'.dependencies] | [target.'cfg(not(target_os = "redox"))'.dependencies] | ||
libc = "0.2.8" | libc = "0.2" | ||
[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/commie.rs
deleted
100644 → 0
examples/detect_color.rs
0 → 100644