mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-16 03:38:03 +01:00
612
Cargo.lock
generated
612
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -22,7 +22,7 @@ serde_json = "1.0.107"
|
|||||||
clap = { version = "4.4.7", features = ["derive"] }
|
clap = { version = "4.4.7", features = ["derive"] }
|
||||||
signal-hook = { version = "0.3.17", default-features = false }
|
signal-hook = { version = "0.3.17", default-features = false }
|
||||||
uuid = { version = "1.6.1", features = ["v4"] }
|
uuid = { version = "1.6.1", features = ["v4"] }
|
||||||
reqwest = { version = "0.11.23", default-features = false, features = ["blocking", "rustls-tls-native-roots", "multipart", "gzip", "json"] }
|
reqwest = { version = "0.12.8", default-features = false, features = ["blocking", "rustls-tls-native-roots", "multipart", "gzip", "json"] }
|
||||||
rustyline = "13.0.0"
|
rustyline = "13.0.0"
|
||||||
config = { version = "0.14.0", default-features = false, features = ["toml", "ini"] }
|
config = { version = "0.14.0", default-features = false, features = ["toml", "ini"] }
|
||||||
which = "6.0.0"
|
which = "6.0.0"
|
||||||
@@ -40,7 +40,8 @@ tracing = "0.1.40"
|
|||||||
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
||||||
rgb = "0.8.37"
|
rgb = "0.8.37"
|
||||||
url = "2.5.0"
|
url = "2.5.0"
|
||||||
tokio-tungstenite = { version = "0.24.0", features = ["rustls-tls-webpki-roots"] }
|
tokio-tungstenite = { version = "0.24.0", features = ["rustls-tls-native-roots"] }
|
||||||
|
rustls = { version = "0.23.15", default-features = false, features = ["aws_lc_rs"] }
|
||||||
sha2 = "0.10.8"
|
sha2 = "0.10.8"
|
||||||
tokio-util = "0.7.10"
|
tokio-util = "0.7.10"
|
||||||
chrono = "0.4.38"
|
chrono = "0.4.38"
|
||||||
|
|||||||
@@ -27,6 +27,8 @@ fn main() -> anyhow::Result<()> {
|
|||||||
logger::disable();
|
logger::disable();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let _ = rustls::crypto::aws_lc_rs::default_provider().install_default();
|
||||||
|
|
||||||
match cli.command {
|
match cli.command {
|
||||||
Commands::Rec(record) => record.run(&config),
|
Commands::Rec(record) => record.run(&config),
|
||||||
Commands::Play(play) => play.run(&config),
|
Commands::Play(play) => play.run(&config),
|
||||||
|
|||||||
Reference in New Issue
Block a user