driptorch-controller/Cargo.toml

55 lines
1 KiB
TOML
Raw Normal View History

2022-09-12 02:14:52 -04:00
[package]
name = "driptorch-controller"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sea-orm = { version = "0.9.2", features = [ "sqlx-postgres", "runtime-tokio-rustls", "macros" ] }
sea-orm-migration = "0.9.2"
migration = { version = "0.1.0", path = "./migration"}
futures = "0.3.24"
dotenv = "0.15.0"
serde = { version = "1.0.144", features = ["derive"] }
rmp = "0.8.11"
rmp-serde = "1.1.0"
ulid = "1.0.0"
axum = "0.6.0-rc.1"
tower = "0.4.13"
2022-09-14 09:03:43 -04:00
chacha20poly1305 = "0.10.1"
argon2 = "0.4.1"
2022-09-12 02:14:52 -04:00
blake3 = "1.3.1"
base64ct = { version = "1.5.2", features = ["alloc"] }
rand = "0.8.5"
2022-10-11 22:07:27 -04:00
tokio = { version = "1.21.0", features = ["full", "tracing"] }
console-subscriber = "0.1.8"
2022-09-12 02:14:52 -04:00
pretty_env_logger = "0.4.0"
log = "0.4.17"
chrono = "0.4.22"
zxcvbn = "2.2.1"
2022-10-12 00:49:17 -04:00
once_cell = "1.15.0"
2022-09-12 02:14:52 -04:00
regex = "1.6.0"
async-trait = "0.1.57"
2022-09-13 09:16:28 -04:00
user-agent-parser = "0.3.3"
lapin = "2.1.1"
2022-09-14 09:03:43 -04:00
picky = "7.0.0-rc.3"
[profile.dev.package.num-bigint-dig]
2022-10-11 22:07:27 -04:00
opt-level = 3