21 lines
769 B
TOML
21 lines
769 B
TOML
[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"] }
|
|
clap = { version = "4.4.16", features = ["env", "derive"] }
|
|
dotenvy = "0.15.7"
|
|
sqlx = { version = "0.7.3", features = ["runtime-tokio", "tls-rustls", "postgres", "migrate", "uuid", "chrono", "json"] }
|
|
uuid = { version = "1.6.1", features = ["v7"] }
|
|
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"
|
|
rsa = { version = "0.9.6", features = ["serde"] }
|
|
rand = "0.8.5"
|