start with: ```cargo install cargo-watch && cargo watch -q -c -w src/ -x run``` --- this currently only returns "This is a Simple CRUD API";
13 lines
329 B
TOML
13 lines
329 B
TOML
[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"
|