foxchat/identity/Cargo.toml

32 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2024-01-15 16:39:31 +01:00
[package]
name = "identity"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
foxchat = { path = "../foxchat" }
axum = { version = "0.7.4", features = ["macros", "query", "tracing", "ws", "original-uri"] }
2024-01-15 16:39:31 +01:00
clap = { version = "4.4.16", features = ["env", "derive"] }
2024-01-16 22:20:19 +01:00
sqlx = { version = "0.7.3", features = ["runtime-tokio", "tls-rustls", "postgres", "migrate", "chrono", "json"] }
2024-01-15 16:39:31 +01:00
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
ulid = { version = "1.1.0", features = ["serde"] }
eyre = "0.6.11"
color-eyre = "0.6.2"
2024-01-16 17:16:39 +01:00
rsa = { version = "0.9.6", features = ["serde", "sha2"] }
2024-01-15 16:39:31 +01:00
rand = "0.8.5"
2024-01-15 20:45:39 +01:00
toml = "0.8.8"
2024-01-18 16:34:40 +01:00
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread", "sync"] }
2024-01-15 20:45:39 +01:00
tracing-subscriber = "0.3.18"
tracing = "0.1.40"
2024-01-16 17:16:39 +01:00
tower-http = { version = "0.5.1", features = ["trace"] }
bcrypt = "0.15.0"
2024-01-16 22:20:19 +01:00
base64 = "0.21.7"
sha256 = "1.5.0"
reqwest = { version = "0.11.23", features = ["json", "gzip", "brotli", "multipart"] }
chrono = "0.4.31"
futures = "0.3.30"
tokio-tungstenite = { version = "0.21.0", features = ["rustls"] }