aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: e3bd3b41365e589c4a4ec2da8a7e0c217616f1b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[package]
name = "ttyrec"
version = "0.2.0"
authors = ["Jesse Luehrs <doy@tozt.net>"]
edition = "2021"

description = "reads and writes ttyrec files"
license = "MIT"
repository = "https://git.tozt.net/ttyrec"
readme = "README.md"
keywords = ["ttyrec"]
categories = ["parser-implementations"]

[dependencies]
futures = { version = "0.3.18", optional = true }

[features]
default = ["async"]
async = ["futures"]