feat: read configs

This commit is contained in:
Ahmet Kaan GÜMÜŞ 2024-11-26 22:30:25 +03:00
parent 00e488a391
commit fdb9609514
7 changed files with 167 additions and 1 deletions

13
Cargo.toml Normal file
View file

@ -0,0 +1,13 @@
[package]
name = "rust_forum"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = "0.7.9"
chrono = { version = "0.4.38", features = ["serde"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
surrealdb = "2.1.1"
tokio = { version = "1.41.1", features = ["full"] }
tower-http = { version = "0.6.2", features = ["cors"] }