clipboard 0.5.0

rust-clipboard is a cross-platform library for getting and setting the contents of the OS-level clipboard.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: rust

os:
- linux
- osx

# TODO: figure out how to get headless X11 working
script: |
  #!/bin/bash
  cargo build --verbose
  if [[ $TRAVIS_OS_NAME == 'linux' ]]; then
    cargo build --tests --verbose
  else
    cargo test --verbose
  fi