diff options
author | David Cuddeback <david.cuddeback@gmail.com> | 2017-12-03 14:17:53 -0700 |
---|---|---|
committer | David Cuddeback <david.cuddeback@gmail.com> | 2017-12-03 14:18:46 -0700 |
commit | 0880a03cab1a9fe7c428ca49a195fdd06b4bc1be (patch) | |
tree | 7c3a3b76602855f2553bb761a2b8a7274a94ef50 | |
parent | 02d3549d47e9e371c9d7a17ccec7caa8ed6aaf21 (diff) | |
download | termios-rs-0880a03cab1a9fe7c428ca49a195fdd06b4bc1be.zip |
add DragonFly BSD to list of supported OSes
-rw-r--r-- | README.md | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -9,13 +9,14 @@ 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. It has been confirmed to work on -the following platforms: +termios API. This should be available on any Unix operating system. This library contains the +termios definitions for the following platforms: * Linux (x86_64, armv6l) * OS X (x86_64) * FreeBSD (amd64) * OpenBSD (amd64) +* DragonFly BSD (x86_64) ## Usage Add `termios` as a dependency in `Cargo.toml`: |