aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 08c7619a66838ea12d41a2ebf724671176cfb6e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "ttyrec"
version = "0.3.3"
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"]
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]

[dependencies]
tokio = { version = "1.26.0", optional = true, features = ["io-util"] }

[features]
default = []
async = ["tokio"]