mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-15 19:28:00 +01:00
25 lines
967 B
TOML
25 lines
967 B
TOML
[package]
|
|
name = "asciinema"
|
|
version = "3.0.0-alpha.6"
|
|
edition = "2021"
|
|
authors = ["Marcin Kulik <m@ku1ik.com>"]
|
|
homepage = "https://asciinema.org"
|
|
repository = "https://github.com/asciinema/asciinema"
|
|
description = "Terminal session recorder"
|
|
license = "GPL-3.0"
|
|
|
|
# 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" ] }
|
|
termion = "2.0.1"
|
|
serde = { version = "1.0.189", features = ["derive"] }
|
|
serde_json = "1.0.107"
|
|
clap = { version = "4.4.7", features = ["derive"] }
|
|
signal-hook = { version = "0.3.17", default-features = false }
|
|
uuid = { version = "1.6.1", features = ["v4"] }
|
|
reqwest = { version = "0.11.23", default-features = false, features = ["blocking", "rustls-tls", "multipart", "gzip", "json"] }
|
|
rustyline = "13.0.0"
|
|
config = { version = "0.13.4", default-features = false, features = ["toml", "ini"] }
|