diff --git a/Cargo.lock b/Cargo.lock index 90c165b..02dc83d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2815,12 +2815,14 @@ dependencies = [ [[package]] name = "tailpipe" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "env_logger", "log", + "pkcs8 0.11.0-rc.11", "ratatui", + "rsa", "russh", "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 23ec245..d79b9f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,15 @@ [package] name = "tailpipe" description = "An SSH server that plays asciinema recordings to clients" -version = "0.5.0" +version = "0.5.1" edition = "2024" license = "GPL-3.0" homepage = "https://clee.github.io/tailpipe/" [dependencies] russh = { version = "0.57", default-features = false, features = ["ring", "rsa"] } +rsa = "=0.10.0-rc.12" +pkcs8 = "=0.11.0-rc.11" tokio = { version = "1", features = ["full"] } toml = "0.8" serde = { version = "1", features = ["derive"] }