mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-16 03:38:03 +01:00
23 lines
672 B
TOML
23 lines
672 B
TOML
[package]
|
|
name = "asciinema"
|
|
version = "3.0.0-alpha.1"
|
|
edition = "2021"
|
|
authors = ["Marcin Kulik <m@ku1ik.com>"]
|
|
homepage = "https://asciinema.org"
|
|
repository = "https://github.com/asciinema/asciinema"
|
|
description = "Terminal session recorder"
|
|
license-file = "LICENSE"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.75"
|
|
nix = { version = "0.27", features = [ "fs", "term", "process", "signal" ] }
|
|
mio = { version ="0.8", features = ["os-poll", "os-ext"] }
|
|
termion = "2.0.1"
|
|
serde = { version = "1.0.189", features = ["derive"] }
|
|
serde_json = "1.0.107"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.8.0"
|