mirror of
https://github.com/warp-tech/warpgate.git
synced 2024-11-10 09:12:56 +08:00
30 lines
1,006 B
TOML
30 lines
1,006 B
TOML
[package]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
name = "warpgate-protocol-ssh"
|
|
version = "0.10.1"
|
|
|
|
[dependencies]
|
|
ansi_term = "0.12"
|
|
anyhow = { version = "1.0", features = ["std"] }
|
|
async-trait = "0.1"
|
|
bimap = "0.6"
|
|
bytes = "1.3"
|
|
dialoguer = "0.10"
|
|
curve25519-dalek = "4.0.0" # pin due to build fail on x86
|
|
ed25519-dalek = "2.0.0" # pin due to build fail on x86 in 2.1
|
|
futures = "0.3"
|
|
russh = { version = "0.44.0", features = ["legacy-ed25519-pkcs8-parser"] }
|
|
# russh = { version = "0.35.0-beta.6", path = "../../russh/russh"}
|
|
sea-orm = { version = "0.12.2", features = [
|
|
"runtime-tokio-rustls",
|
|
], 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" }
|
|
warpgate-core = { version = "*", path = "../warpgate-core" }
|
|
warpgate-db-entities = { version = "*", path = "../warpgate-db-entities" }
|
|
zeroize = "^1.5"
|