Files
asciinema/Cargo.toml

38 lines
1.4 KiB
TOML
Raw Normal View History

2023-10-20 15:11:16 +02:00
[package]
name = "asciinema"
2024-01-28 18:27:42 +01:00
version = "3.0.0-beta.2"
2023-10-20 15:11:16 +02:00
edition = "2021"
2023-10-22 21:48:04 +02:00
authors = ["Marcin Kulik <m@ku1ik.com>"]
homepage = "https://asciinema.org"
repository = "https://github.com/asciinema/asciinema"
description = "Terminal session recorder"
2023-12-26 21:02:09 +01:00
license = "GPL-3.0"
2023-10-20 15:11:16 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-10-21 14:40:39 +02:00
anyhow = "1.0.75"
nix = { version = "0.27", features = [ "fs", "term", "process", "signal" ] }
2023-10-21 14:40:39 +02:00
termion = "2.0.1"
2023-10-26 12:02:53 +02:00
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
2023-10-26 17:30:42 +02:00
clap = { version = "4.4.7", features = ["derive"] }
signal-hook = { version = "0.3.17", default-features = false }
uuid = { version = "1.6.1", features = ["v4"] }
2023-12-21 16:23:40 +01:00
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"] }
which = "5.0.0"
tempfile = "3.9.0"
scraper = { version = "0.15.0", default-features = false }
avt = "0.9.0"
2024-02-07 14:05:00 +01:00
axum = { version = "0.7.4", features = ["ws"] }
tokio = { version = "1.35.1", features = ["full"] }
futures-util = "0.3.30"
tokio-stream = { version = "0.1.14", features = ["sync"] }
rust-embed = "8.2.0"
mime_guess = "2.0.4"
tower-http = { version = "0.5.1", features = ["trace"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }