first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 22:32:52 +03:00
commit dd72c6220d
3388 changed files with 1195487 additions and 0 deletions

30
Cargo.toml Normal file
View File

@@ -0,0 +1,30 @@
[package]
name = "Web"
version = "0.1.0"
edition = "2024"
[dependencies]
async-trait = "0.1.89"
axum = { version = "0.8.8", features = ["multipart"] }
argon2 = "0.5.3"
dotenvy = "0.15.7"
image = { version = "0.25.8", default-features = false, features = ["avif", "jpeg", "png", "webp"] }
jsonwebtoken = { version = "10.3.0", features = ["rust_crypto"] }
sea-orm = { version = "1.1.20", features = ["sqlx-postgres", "runtime-tokio-native-tls", "macros"] }
sea-orm-migration = "1.1.20"
redis = { version = "1.2.0", features = ["tokio-comp"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tokio = { version = "1.51.1", features = ["full"] }
tower-http = { version = "0.6.8", features = ["trace"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter", "fmt"] }
utoipa = "5.4.0"
utoipa-swagger-ui = { version = "9.0.2", features = ["axum"] }
uuid = { version = "1.23.0", features = ["v4", "serde"] }
rmcp = { version = "0.16.0", features = ["server"] }
libvips = "1.7.3"
[dev-dependencies]
tower = { version = "0.5.3", features = ["util"] }