first commit
This commit is contained in:
31
Cargo.toml
Normal file
31
Cargo.toml
Normal file
@@ -0,0 +1,31 @@
|
||||
[package]
|
||||
name = "rust_api_account_system"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
default-run = "rust_api_account_system"
|
||||
|
||||
[dependencies]
|
||||
axum = { version = "0.8", features = ["json"] }
|
||||
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
|
||||
sea-orm = { version = "1.1", features = ["sqlx-postgres", "runtime-tokio-rustls", "macros"] }
|
||||
sea-orm-migration = { version = "1.1", features = ["sqlx-postgres", "runtime-tokio-rustls"] }
|
||||
dotenvy = "0.15"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
uuid = { version = "1", features = ["serde", "v4"] }
|
||||
bcrypt = "0.18"
|
||||
sha2 = "0.10"
|
||||
jsonwebtoken = { version = "10", features = ["rust_crypto"] }
|
||||
oauth2 = "5"
|
||||
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
validator = { version = "0.20", features = ["derive"] }
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = "0.3"
|
||||
hex = "0.4"
|
||||
anyhow = "1"
|
||||
thiserror = "2"
|
||||
async-trait = "0.1"
|
||||
|
||||
[dev-dependencies]
|
||||
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
|
||||
Reference in New Issue
Block a user