warpgate/warpgate-protocol-ssh/Cargo.toml

31 lines
1.1 KiB
TOML
Raw Normal View History

2022-04-11 04:58:58 +08:00
[package]
edition = "2021"
license = "Apache-2.0"
2022-04-11 04:58:58 +08:00
name = "warpgate-protocol-ssh"
2023-08-02 15:05:59 +08:00
version = "0.7.4"
2022-04-11 04:58:58 +08:00
[dependencies]
ansi_term = "0.12"
anyhow = { version = "1.0", features = ["std"] }
async-trait = "0.1"
2022-04-16 06:27:10 +08:00
bimap = "0.6"
bytes = "1.3"
dialoguer = "0.10"
futures = "0.3"
2023-03-17 16:58:50 +08:00
russh = { version = "0.37.1", features = ["vendored-openssl"] }
# russh = { version = "0.35.0-beta.6", features = ["vendored-openssl"], path = "../../russh/russh"}
2023-03-17 16:58:50 +08:00
russh-keys = { version = "0.37.1", features = ["vendored-openssl"] }
# russh-keys = { version = "0.23.0-beta.1", features = ["vendored-openssl"], path = "../../russh/russh-keys" }
sea-orm = { version = "0.11.2", features = [
"runtime-tokio-native-tls",
], default-features = false }
thiserror = "1.0"
time = "0.3"
tokio = { version = "1.20", features = ["tracing", "signal"] }
tracing = "0.1"
uuid = { version = "1.2", features = ["v4"] }
warpgate-common = { version = "*", path = "../warpgate-common" }
2022-09-02 20:00:08 +08:00
warpgate-core = { version = "*", path = "../warpgate-core" }
warpgate-db-entities = { version = "*", path = "../warpgate-db-entities" }
zeroize = "^1.5"