evoxmusic / twitter-clone-rust

Twitter clone in Rust
https://docs.qovery.com/guides/tutorial/create-a-blazingly-fast-api-in-rust/
130 stars 40 forks source link

Update the project with latest package versions #10

Open idc77 opened 5 months ago

idc77 commented 5 months ago

This is sadly one of the top search results for Rust Restful on Google right now. And it's severely outdated.

The tutorial as well is not a very good tutorial. The focus of that tutorial is not to teach Rust and actix or diesel, but to promote your paid service.

With this cargo.toml

[dependencies]
actix-rt = "2.9.0"
actix-web = "4.5.1"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.7.0", features = ["serde", "v4"] }
env_logger = "0.11.3"
diesel = { version = "2.1.5", features = ["postgres", "r2d2", "chrono", "uuid"] }
r2d2 = "0.8.10"
r2d2-diesel = "1.0.0"

this repository doesn't work anymore. The issues are too numerous to mention all.

From a Rust RESTful tutorial I'd expect it to hand hold me and walk me through all the steps. For me that means, you don't care about your customers, all you want is a quick buck.