warpgate/warpgate-common/Cargo.toml

46 lines
1.1 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-common"
2023-11-24 02:41:07 +08:00
version = "0.9.0"
2022-04-11 04:58:58 +08:00
[dependencies]
anyhow = "1.0"
2022-04-29 08:16:18 +08:00
argon2 = "0.4"
async-trait = "0.1"
bytes = "1.3"
chrono = { version = "0.4", default_features = false, features = ["serde"] }
data-encoding = "2.3"
2022-09-02 20:00:08 +08:00
delegate = "0.6"
2022-04-11 04:58:58 +08:00
humantime-serde = "1.1"
2022-08-09 05:30:18 +08:00
futures = "0.3"
once_cell = "1.17"
2022-04-29 08:16:18 +08:00
password-hash = "0.4"
poem = { version = "1.3.50", features = ["rustls"] }
poem-openapi = { version = "2.0", features = [
"swagger-ui",
"chrono",
"uuid",
"static-files",
] }
2022-04-11 04:58:58 +08:00
rand = "0.8"
2022-04-16 06:27:10 +08:00
rand_chacha = "0.3"
rand_core = { version = "0.6", features = ["std"] }
sea-orm = { version = "0.12.2", features = [
"runtime-tokio-native-tls",
"macros",
], default-features = false }
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0"
tokio = { version = "1.20", features = ["tracing"] }
totp-rs = { version = "5.0", features = ["otpauth"] }
tracing = "0.1"
tracing-core = "0.1"
2022-04-11 04:58:58 +08:00
url = "2.2"
uuid = { version = "1.2", features = ["v4", "serde"] }
2022-08-06 02:04:40 +08:00
warpgate-sso = { version = "*", path = "../warpgate-sso" }
rustls = { version = "0.20", features = ["dangerous_configuration"] }
rustls-pemfile = "1.0"
webpki = "0.22"