init
This commit is contained in:
commit
00eca2801f
18 changed files with 2837 additions and 0 deletions
21
identity/Cargo.toml
Normal file
21
identity/Cargo.toml
Normal file
|
@ -0,0 +1,21 @@
|
|||
[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"
|
Loading…
Add table
Add a link
Reference in a new issue