Files
asciinema/Cargo.toml

57 lines
1.8 KiB
TOML
Raw Normal View History

2023-10-20 15:11:16 +02:00
[package]
name = "asciinema"
2024-06-26 09:42:28 +02:00
version = "3.0.0-rc.3"
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
2024-04-20 11:29:00 +02:00
# MSRV
rust-version = "1.70.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" ] }
2024-02-09 09:31:38 +01:00
termion = "3.0.0"
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"
2024-02-09 09:31:38 +01:00
config = { version = "0.14.0", default-features = false, features = ["toml", "ini"] }
which = "6.0.0"
tempfile = "3.9.0"
scraper = { version = "0.19.0", default-features = false }
2024-06-15 17:44:15 +02:00
avt = "0.11.0"
axum = { version = "0.7.4", default-features = false, features = ["http1", "ws"] }
2024-02-07 14:05:00 +01:00
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"] }
rgb = "0.8.37"
2024-03-28 21:26:53 +01:00
url = "2.5.0"
tokio-tungstenite = { version = "0.21.0", features = ["rustls-tls-webpki-roots"] }
sha2 = "0.10.8"
tokio-util = "0.7.10"
chrono = "0.4.38"
hostname = "0.4.0"
[build-dependencies]
clap = { version = "4.4.7", features = ["derive"] }
clap_complete = "4.4.10"
clap_mangen = "0.2.19"
url = "2.5.0"
[profile.release]
strip = true