[go: up one dir, main page]

crossterm 0.10.0

An crossplatform terminal library for manipulating terminals.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Set up the Rust toolchain.
language: rust
rust:
  - stable

before_script:
  - export PATH=$PATH:/home/travis/.cargo/bin
  - rustup component add rustfmt-preview

os:
  - linux
  - osx
  - windows

script:
  - cargo build
  - cargo fmt -- --check
  - cargo test -- --nocapture --test-threads 1