warpgate/warpgate-admin/Cargo.toml

44 lines
1.2 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"
2022-09-27 04:57:45 +08:00
version = "0.6.4"
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.2"
chrono = "0.4"
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 }
2022-11-12 00:36:30 +08:00
poem = { version = "1.3.48", features = [
2022-07-20 16:02:37 +08:00
"cookie",
"session",
"anyhow",
"websocket",
] }
2022-11-12 00:36:30 +08:00
poem-openapi = { version = "2.0.19", features = [
2022-07-20 16:02:37 +08:00
"swagger-ui",
"chrono",
"uuid",
"static-files",
] }
russh-keys = { version = "0.22.0", features = ["openssl"] }
rust-embed = "6.3"
2022-11-12 00:22:34 +08:00
sea-orm = { version = "0.10.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"
2022-07-20 16:02:37 +08:00
uuid = { version = "1.0", features = ["v4", "serde"] }
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"