warpgate/warpgate-common/Cargo.toml

33 lines
976 B
TOML
Raw Normal View History

2022-04-11 04:58:58 +08:00
[package]
edition = "2021"
license = "Apache-2.0"
name = "warpgate-common"
version = "0.1.0"
[dependencies]
anyhow = "1.0"
2022-04-29 08:16:18 +08:00
argon2 = "0.4"
2022-04-11 04:58:58 +08:00
async-trait = "0.1"
bytes = "1.1"
chrono = {version = "0.4", features = ["serde"]}
data-encoding = "2.3"
humantime-serde = "1.1"
2022-04-16 06:27:10 +08:00
lazy_static = "1.4"
2022-04-11 04:58:58 +08:00
packet = "0.1"
2022-04-29 08:16:18 +08:00
password-hash = "0.4"
poem-openapi = {version = "^1.3.30", 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"
2022-04-11 04:58:58 +08:00
rand_core = {version = "0.6", features = ["std"]}
2022-04-29 08:42:26 +08:00
sea-orm = {version = "^0.7", features = ["sqlx-sqlite", "runtime-tokio-native-tls", "macros"], default-features = false}
2022-04-11 04:58:58 +08:00
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0"
tokio = {version = "1.18", features = ["tracing"]}
totp-rs = "1.4"
2022-04-11 04:58:58 +08:00
tracing = "0.1"
url = "2.2"
uuid = {version = "0.8", features = ["v4", "serde"]}
warpgate-db-entities = {version = "*", path = "../warpgate-db-entities"}
warpgate-db-migrations = {version = "*", path = "../warpgate-db-migrations"}