[INITIAL] -> Did a basic API implementation

start with:
```cargo install cargo-watch && cargo watch -q -c -w src/ -x run```

---

this currently only returns "This is a Simple CRUD API";
This commit is contained in:
2025-07-29 20:14:41 +02:00
parent e42158ed0f
commit b568494757
6 changed files with 1717 additions and 0 deletions

12
Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[package]
name = "rsAPI"
version = "0.1.0"
edition = "2024"
[dependencies]
chrono = { version = "0.4.41", features = ["serde"] }
pretty_env_logger = "0.5.0"
serde = { version = "1.0.219", features = ["derive"] }
tokio = { version = "1.47.0", features = ["full"] }
uuid = { version = "1.17.0", features = ["v4"] }
warp = "0.3.7"