neo/Cargo.toml
Patrick Michl 304f82baa4
All checks were successful
continuous-integration/drone/push Build is passing
fix errors, move password hashing into User add sqlx offline checks
2022-04-28 21:55:52 +02:00

19 lines
662 B
TOML

[package]
name = "matrix"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.17", features = ["full"] }
axum = "0.5"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
serde = {version = "1.0", features = ["derive"] }
tower-http = { version = "0.2", features = ["cors", "trace"]}
sqlx = { version = "0.5", features = ["sqlite", "macros", "runtime-tokio-rustls", "offline"] }
anyhow = "1.0"
thiserror = "1.0"
argon2 = { version = "0.4", features = ["std"] }
rand_core = { version = "0.6", features = ["std"] }