warpgate/warpgate-admin/Cargo.toml

44 lines
1.2 KiB
TOML
Raw Permalink 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"
2024-08-15 04:59:52 +08:00
version = "0.10.2"
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"
2024-09-18 17:28:39 +08:00
bytes = "1.4"
2024-07-16 16:40:20 +08:00
chrono = { version = "0.4", default-features = false }
futures = "0.3"
2022-04-11 04:58:58 +08:00
hex = "0.4"
2024-07-16 16:40:20 +08:00
mime_guess = { version = "2.0", default-features = false }
2024-09-18 17:28:39 +08:00
poem = { version = "3.1", features = [
2022-07-20 16:02:37 +08:00
"cookie",
"session",
"anyhow",
"websocket",
] }
2024-09-18 17:28:39 +08:00
poem-openapi = { version = "5.1", features = [
2022-07-20 16:02:37 +08:00
"swagger-ui",
"chrono",
"uuid",
"static-files",
] }
russh = { version = "0.44.1", features = ["legacy-ed25519-pkcs8-parser"] }
2024-03-24 18:04:21 +08:00
rust-embed = "8.3"
2024-09-18 17:28:39 +08:00
sea-orm = { version = "0.12", features = [
2024-07-16 18:56:42 +08:00
"runtime-tokio-rustls",
2022-07-20 16:02:37 +08:00
"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"
2024-09-18 17:28:39 +08:00
uuid = { version = "1.3", 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"