2023-10-20 15:11:16 +02:00
|
|
|
[package]
|
|
|
|
|
name = "asciinema"
|
2025-05-07 17:16:14 +02:00
|
|
|
version = "3.0.0-rc.4"
|
2023-10-20 15:11:16 +02:00
|
|
|
edition = "2021"
|
2023-10-22 21:48:04 +02:00
|
|
|
authors = ["Marcin Kulik <m@ku1ik.com>"]
|
2023-10-22 21:44:56 +02:00
|
|
|
homepage = "https://asciinema.org"
|
|
|
|
|
repository = "https://github.com/asciinema/asciinema"
|
2023-10-22 21:50:49 +02:00
|
|
|
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
|
2025-04-08 21:50:48 +02:00
|
|
|
rust-version = "1.75.0"
|
2024-04-20 11:29:00 +02:00
|
|
|
|
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]
|
2025-05-03 20:29:14 +02:00
|
|
|
anyhow = "1.0.98"
|
|
|
|
|
nix = { version = "0.30", features = ["fs", "term", "process", "signal", "poll"] }
|
2024-02-09 09:31:38 +01:00
|
|
|
termion = "3.0.0"
|
2025-05-03 20:29:14 +02:00
|
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0.140"
|
2025-05-03 18:19:07 +02:00
|
|
|
clap = { version = "4.5.37", features = ["derive"] }
|
2024-01-06 21:54:57 +01:00
|
|
|
signal-hook = { version = "0.3.17", default-features = false }
|
2023-12-21 15:13:54 +01:00
|
|
|
uuid = { version = "1.6.1", features = ["v4"] }
|
2025-05-03 20:29:14 +02:00
|
|
|
reqwest = { version = "0.12.15", default-features = false, features = ["blocking", "rustls-tls-native-roots", "multipart", "gzip", "json"] }
|
2023-12-23 15:38:13 +01:00
|
|
|
rustyline = "13.0.0"
|
2025-05-03 20:29:14 +02:00
|
|
|
config = { version = "0.15.11", default-features = false, features = ["toml", "ini"] }
|
|
|
|
|
which = "6.0.3"
|
2024-01-22 14:37:14 +01:00
|
|
|
tempfile = "3.9.0"
|
2025-02-11 20:03:50 +01:00
|
|
|
avt = "0.15.1"
|
2025-05-03 20:29:14 +02:00
|
|
|
axum = { version = "0.8.4", default-features = false, features = ["http1", "ws"] }
|
|
|
|
|
tokio = { version = "1.44.2", features = ["full"] }
|
|
|
|
|
futures-util = "0.3.31"
|
|
|
|
|
tokio-stream = { version = "0.1.17", features = ["sync"] }
|
2024-02-07 14:05:00 +01:00
|
|
|
rust-embed = "8.2.0"
|
2025-05-03 20:29:14 +02:00
|
|
|
tower-http = { version = "0.6.2", features = ["trace"] }
|
|
|
|
|
tracing = "0.1.41"
|
2024-02-08 11:39:11 +01:00
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
2024-02-12 15:49:35 +01:00
|
|
|
rgb = "0.8.37"
|
2024-03-28 21:26:53 +01:00
|
|
|
url = "2.5.0"
|
2025-05-03 20:29:14 +02:00
|
|
|
tokio-tungstenite = { version = "0.26.2", features = ["rustls-tls-native-roots"] }
|
|
|
|
|
rustls = { version = "0.23.26", default-features = false, features = ["aws_lc_rs"] }
|
2024-04-17 20:45:56 +02:00
|
|
|
tokio-util = "0.7.10"
|
2024-02-22 10:02:50 +01:00
|
|
|
|
2024-04-29 16:50:11 +02:00
|
|
|
[build-dependencies]
|
2025-05-03 18:19:07 +02:00
|
|
|
clap = { version = "4.5.37", features = ["derive"] }
|
|
|
|
|
clap_complete = "4.5.48"
|
|
|
|
|
clap_mangen = "0.2.26"
|
2024-04-29 16:50:11 +02:00
|
|
|
url = "2.5.0"
|
|
|
|
|
|
2024-02-22 10:02:50 +01:00
|
|
|
[profile.release]
|
|
|
|
|
strip = true
|