icrc/server/Cargo.toml

30 lines
793 B
TOML

[package]
name = "icrc-server"
version = "0.1.0"
edition = "2021"
authors = ["antifallobst"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.81"
argon2 = "0.5.3"
base64 = "0.22.0"
base64-serde = "0.7.0"
chrono = "0.4.35"
compile-time-run = "0.2.12"
dotenvy = "0.15.7"
env_logger = "0.11.3"
log = "0.4.21"
rand = "0.8.5"
serde = { version = "1.0.197", features = ["default"] }
strum = { version = "0.26.2", features = ["derive"] }
thiserror = "1.0.58"
uuid = { version = "1.7.0", features = ["v4"] }
tokio = { version = "1.36.0", features = ["sync"] }
actix-web = "4.5.1"
actix-web-httpauth = "0.8.1"
sqlx = { version = "0.7.4", features = ["runtime-tokio", "tls-native-tls", "mysql", "chrono"] }