aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-10-27 08:30:41 -0400
committerJesse Luehrs <doy@tozt.net>2019-10-27 08:30:41 -0400
commitf900d0952cb94c88b33f85e9885ae00d6e56cdb5 (patch)
tree1172b36fd076755ad5a381a51fffa324ad2a7abb /src
parent649450762eff2d71371e176534fbe64752a3284e (diff)
downloadttyrec-f900d0952cb94c88b33f85e9885ae00d6e56cdb5.tar.gz
ttyrec-f900d0952cb94c88b33f85e9885ae00d6e56cdb5.zip
make tokio features optional
Diffstat (limited to 'src')
-rw-r--r--src/error.rs2
-rw-r--r--src/lib.rs4
2 files changed, 6 insertions, 0 deletions
diff --git a/src/error.rs b/src/error.rs
index 975889b..c106d02 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -17,10 +17,12 @@ pub enum Error {
FrameTooLong { input: u64 },
/// failed to read from file
+ #[cfg(feature = "async")]
#[snafu(display("failed to read from file: {}", source))]
ReadFile { source: tokio::io::Error },
/// failed to write to file
+ #[cfg(feature = "async")]
#[snafu(display("failed to write to file: {}", source))]
WriteFile { source: tokio::io::Error },
}
diff --git a/src/lib.rs b/src/lib.rs
index 5ae78fa..c08be3a 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -20,7 +20,11 @@ mod frame;
pub use frame::Frame;
mod parser;
pub use parser::Parser;
+#[cfg(feature = "async")]
mod reader;
+#[cfg(feature = "async")]
pub use reader::Reader;
+#[cfg(feature = "async")]
mod writer;
+#[cfg(feature = "async")]
pub use writer::Writer;