warpgate/warpgate-admin/Cargo.toml

45 lines
1.3 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-admin"
2023-03-17 16:59:11 +08:00
version = "0.7.1"
2022-04-11 04:58:58 +08:00
[dependencies]
2022-07-20 16:02:37 +08:00
anyhow = { version = "1.0", features = ["std"] }
async-trait = "0.1"
bytes = "1.3"
chrono = { version = "0.4", default_features = false }
futures = "0.3"
2022-04-11 04:58:58 +08:00
hex = "0.4"
2022-07-20 16:02:37 +08:00
mime_guess = { version = "2.0", default_features = false }
poem = { version = "1.3.50", features = [
2022-07-20 16:02:37 +08:00
"cookie",
"session",
"anyhow",
"websocket",
] }
poem-openapi = { version = "2.0", features = [
2022-07-20 16:02:37 +08:00
"swagger-ui",
"chrono",
"uuid",
"static-files",
] }
2023-03-17 16:58:50 +08:00
russh-keys = { version = "0.37.1", features = ["openssl"] }
# russh-keys = { version = "0.23.0-beta.1", features = ["openssl"], path = "../../russh/russh-keys" }
rust-embed = "6.3"
sea-orm = { version = "0.11.2", features = [
2022-07-20 16:02:37 +08:00
"runtime-tokio-native-tls",
"macros",
], default-features = false }
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0"
2022-09-07 04:33:37 +08:00
tokio = { version = "1.20", features = ["tracing"] }
tracing = "0.1"
uuid = { version = "1.2", features = ["v4", "serde"] }
2022-07-20 16:02:37 +08:00
warpgate-common = { version = "*", path = "../warpgate-common" }
2022-09-02 20:00:08 +08:00
warpgate-core = { version = "*", path = "../warpgate-core" }
2022-07-20 16:02:37 +08:00
warpgate-db-entities = { version = "*", path = "../warpgate-db-entities" }
warpgate-protocol-ssh = { version = "*", path = "../warpgate-protocol-ssh" }
regex = "1.6"