Files
asciinema/Cargo.toml

59 lines
2.2 KiB
TOML
Raw Normal View History

2023-10-20 15:11:16 +02:00
[package]
name = "asciinema"
2025-06-24 15:26:40 +02:00
version = "3.0.0-rc.5"
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
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]
anyhow = "1.0"
nix = { version = "0.30", features = ["fs", "term", "process", "signal", "poll"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
clap = { version = "4.0", features = ["derive", "wrap_help"] }
signal-hook = { version = "0.3", default-features = false }
uuid = { version = "1.6", features = ["v4"] }
2025-06-20 17:09:21 +02:00
reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls-native-roots", "multipart", "gzip", "json", "stream"] }
2025-06-20 16:11:03 +02:00
rustyline = { version = "14.0", default-features = false }
config = { version = "0.15", default-features = false, features = ["toml"] }
which = "8.0"
tempfile = "3.0"
avt = "0.16"
axum = { version = "0.8", default-features = false, features = ["http1", "ws"] }
tokio = { version = "1.40", features = ["rt-multi-thread", "net", "sync", "time", "fs", "process"] }
futures-util = { version = "0.3", default-features = false, features = ["sink"] }
tokio-stream = { version = "0.1", default-features = false, features = ["sync", "time"] }
rust-embed = "8.0"
tower-http = { version = "0.6", features = ["trace"] }
tracing = { version = "0.1", default-features = false }
2025-06-20 16:11:03 +02:00
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["fmt", "env-filter"] }
rgb = { version = "0.8", default-features = false }
url = "2.5"
tokio-tungstenite = { version = "0.26", default-features = false, features = ["connect", "rustls-tls-native-roots"] }
rustls = { version = "0.23", default-features = false, features = ["ring"] }
tokio-util = { version = "0.7", features = ["rt"] }
rand = "0.9"
async-trait = "0.1"
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
bytes = "1.0"
[build-dependencies]
clap = { version = "4.0", features = ["derive", "wrap_help"] }
clap_complete = "4.0"
clap_mangen = "0.2"
url = "2.5"
[profile.release]
strip = true
[features]
macos-tty = []