mirror of
https://github.com/warp-tech/warpgate.git
synced 2024-11-13 03:18:48 +08:00
32 lines
962 B
TOML
32 lines
962 B
TOML
[package]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
name = "warpgate-protocol-ssh"
|
|
version = "0.5.0"
|
|
|
|
[dependencies]
|
|
ansi_term = "0.12"
|
|
anyhow = { version = "1.0", features = ["std"] }
|
|
async-trait = "0.1"
|
|
bimap = "0.6"
|
|
bytes = "1.2"
|
|
dialoguer = "0.10"
|
|
futures = "0.3"
|
|
russh = { version = "0.34.0-beta.12", features = [
|
|
"vendored-openssl",
|
|
], path = "../russh/russh" }
|
|
russh-keys = { version = "0.22.0-beta.5", features = [
|
|
"vendored-openssl",
|
|
], path = "../russh/russh-keys" }
|
|
sea-orm = { version = "^0.9", 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.0", features = ["v4"] }
|
|
warpgate-common = { version = "*", path = "../warpgate-common" }
|
|
warpgate-core = { version = "*", path = "../warpgate-core" }
|
|
warpgate-db-entities = { version = "*", path = "../warpgate-db-entities" }
|
|
zeroize = "^1.5"
|