aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: db0dfd2ab120573973768df6e8102538f8c15789 (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]
futures-lite = { version = "1.12.0", optional = true }

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