aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-10-27 08:07:09 -0400
committerJesse Luehrs <doy@tozt.net>2019-10-27 08:07:09 -0400
commit17fc6b3eda370f99fee48420532ada8b497ecd8c (patch)
treecf8067dc80e700bf3056e22e86942e13e4fd3795 /src/lib.rs
parent9739318498f8b78788923986d77a7b436d6af12a (diff)
downloadttyrec-17fc6b3eda370f99fee48420532ada8b497ecd8c.tar.gz
ttyrec-17fc6b3eda370f99fee48420532ada8b497ecd8c.zip
docs
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 7324edd..1de8daa 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,3 +1,9 @@
+//! This crate contains helpers for reading and writing
+//! [ttyrec](https://en.wikipedia.org/wiki/Ttyrec) files.
+//!
+//! `Parser` and `Creator` can be used to read and write files manually, and
+//! `Reader` and `Writer` are helpers to provide a nicer API for asynchronous
+//! applications using `tokio`.
mod creator;
pub use creator::Creator;
mod error;