warpgate/Cargo.toml

69 lines
1.5 KiB
TOML
Raw Normal View History

2022-06-27 04:11:01 +08:00
cargo-features = ["workspace-inheritance"]
2022-04-11 04:58:58 +08:00
[workspace]
2022-06-27 04:11:01 +08:00
default-members = ["warpgate"]
2022-04-11 04:58:58 +08:00
members = [
"warpgate",
"warpgate-admin",
"warpgate-common",
"warpgate-db-migrations",
"warpgate-db-entities",
2022-06-27 02:50:04 +08:00
"warpgate-protocol-http",
2022-04-11 04:58:58 +08:00
"warpgate-protocol-ssh",
2022-06-27 02:50:04 +08:00
"warpgate-web",
2022-04-11 04:58:58 +08:00
]
2022-06-27 04:11:01 +08:00
[workspace.package]
edition = "2021"
license = "Apache-2.0"
version = "0.2.5"
[workspace.dependencies]
anyhow = { version = "1.0", features = ["backtrace", "std"] }
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
bytes = "1.1"
data-encoding = "2.3"
tracing = "0.1"
lazy_static = "1.4"
dialoguer = "0.10"
futures = "0.3"
poem = { version = "^1.3.30", features = [
"cookie",
"session",
"anyhow",
"websocket",
"rustls",
"websocket",
"sse",
"embed",
] }
poem-openapi = { version = "^1.3.30", features = [
"swagger-ui",
"chrono",
"uuid",
"static-files",
] }
russh = { version = "0.34.0-beta.5", features = ["openssl"] }
russh-keys = { version = "0.22.0-beta.3", features = ["openssl"] }
2022-06-27 04:11:01 +08:00
rust-embed = "6.3"
time = "0.3"
tokio = { version = "1.19", features = ["tracing", "signal", "macros"] }
sea-orm = { version = "^0.8", features = [
"sqlx-sqlite",
"runtime-tokio-native-tls",
"macros",
"with-chrono",
"with-uuid",
"with-json",
], default-features = false }
serde = "1.0"
thiserror = "1.0"
uuid = { version = "0.8", features = ["v4", "serde"] }
serde_json = "1.0"
2022-04-11 04:58:58 +08:00
[profile.release]
lto = true
panic = "abort"
strip = "debuginfo"