warpgate/warpgate-protocol-ssh/Cargo.toml

26 lines
756 B
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"
2022-07-27 06:18:03 +08:00
version = "0.4.0"
2022-04-11 04:58:58 +08:00
[dependencies]
ansi_term = "0.12"
anyhow = "1.0"
async-trait = "0.1"
2022-04-16 06:27:10 +08:00
bimap = "0.6"
bytes = "1.2"
dialoguer = "0.10"
futures = "0.3"
2022-08-09 05:30:18 +08:00
russh = {version = "0.34.0-beta.8", features = ["openssl"]}
russh-keys = {version = "0.22.0-beta.4", features = ["openssl"]}
2022-07-12 22:00:38 +08:00
sea-orm = {version = "^0.9", features = ["runtime-tokio-native-tls"], default-features = false}
thiserror = "1.0"
time = "0.3"
2022-07-20 16:02:37 +08:00
tokio = {version = "1.20", features = ["tracing", "signal"]}
tracing = "0.1"
2022-07-12 22:00:38 +08:00
uuid = {version = "1.0", features = ["v4"]}
warpgate-common = {version = "*", path = "../warpgate-common"}
warpgate-db-entities = {version = "*", path = "../warpgate-db-entities"}
2022-07-20 16:02:37 +08:00
zeroize="^1.5"