diff options
author | David Cuddeback <david.cuddeback@gmail.com> | 2015-10-15 19:30:32 -0700 |
---|---|---|
committer | David Cuddeback <david.cuddeback@gmail.com> | 2015-10-15 19:30:32 -0700 |
commit | 2c51ea4aad9f8b6a1e68f461235882bb2df01f5c (patch) | |
tree | 777ae707cd3221d1d1b9788880cf83e0e6d808e7 | |
parent | c224ff4989dc16d556bc11d8792134d675998572 (diff) | |
download | termios-rs-2c51ea4aad9f8b6a1e68f461235882bb2df01f5c.zip |
adds supported platforms to README
-rw-r--r-- | README.md | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -9,7 +9,12 @@ converts integer return values to `std::io::Result` to indicate success or failu ## Dependencies In order to use the `termios` crate, you must have a native `libc` library that implements the -termios API. This should be available on any Unix operating system. +termios API. This should be available on any Unix operating system. It has been confirmed to work on +the following platforms: + +* Linux (x86_64, armv6l) +* OS X (x86_64) +* FreeBSD (amd64) ## Usage Add `termios` as a dependency in `Cargo.toml`: |