[PR #153] [MERGED] refacto(react-rust-postgres): replace rocket by actix-web #852

Closed
opened 2026-03-07 21:25:18 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/docker/awesome-compose/pull/153
Author: @jdrouet
Created: 7/3/2021
Status: Merged
Merged: 7/6/2021
Merged by: @aiordache

Base: masterHead: rust-postgres


📝 Commits (1)

  • c2850c6 refacto(react-rust-postgres): replace rocket by actix-web

📊 Changes

14 files changed (+112 additions, -170 deletions)

View changed files

📝 react-rust-postgres/backend/Cargo.toml (+6 -12)
📝 react-rust-postgres/backend/Dockerfile (+1 -5)
react-rust-postgres/backend/diesel.toml (+0 -5)
react-rust-postgres/backend/migrations/00000000000000_diesel_initial_setup/down.sql (+0 -6)
react-rust-postgres/backend/migrations/00000000000000_diesel_initial_setup/up.sql (+0 -36)
📝 react-rust-postgres/backend/migrations/0001_create-users_down.sql (+0 -0)
📝 react-rust-postgres/backend/migrations/0001_create-users_up.sql (+0 -0)
📝 react-rust-postgres/backend/readme.md (+1 -1)
📝 react-rust-postgres/backend/src/main.rs (+35 -86)
react-rust-postgres/backend/src/postgres.rs (+40 -0)
react-rust-postgres/backend/src/schema.rs (+0 -6)
📝 react-rust-postgres/backend/src/user.rs (+16 -9)
📝 react-rust-postgres/docker-compose.yaml (+10 -1)
📝 react-rust-postgres/frontend/src/App.js (+3 -3)

📄 Description

fixes #149
closes #151

In order to not be forced to use the nightly version of rust, this replaces Rocket by Actix-web, which is faster than Rocket, and Diesel by Deadpool-postgres which is baster and simpler.

Signed-off-by: Jérémie Drouet jeremie.drouet@gmail.com


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/docker/awesome-compose/pull/153 **Author:** [@jdrouet](https://github.com/jdrouet) **Created:** 7/3/2021 **Status:** ✅ Merged **Merged:** 7/6/2021 **Merged by:** [@aiordache](https://github.com/aiordache) **Base:** `master` ← **Head:** `rust-postgres` --- ### 📝 Commits (1) - [`c2850c6`](https://github.com/docker/awesome-compose/commit/c2850c6718dccfe5f5939df9cf687721eded0408) refacto(react-rust-postgres): replace rocket by actix-web ### 📊 Changes **14 files changed** (+112 additions, -170 deletions) <details> <summary>View changed files</summary> 📝 `react-rust-postgres/backend/Cargo.toml` (+6 -12) 📝 `react-rust-postgres/backend/Dockerfile` (+1 -5) ➖ `react-rust-postgres/backend/diesel.toml` (+0 -5) ➖ `react-rust-postgres/backend/migrations/00000000000000_diesel_initial_setup/down.sql` (+0 -6) ➖ `react-rust-postgres/backend/migrations/00000000000000_diesel_initial_setup/up.sql` (+0 -36) 📝 `react-rust-postgres/backend/migrations/0001_create-users_down.sql` (+0 -0) 📝 `react-rust-postgres/backend/migrations/0001_create-users_up.sql` (+0 -0) 📝 `react-rust-postgres/backend/readme.md` (+1 -1) 📝 `react-rust-postgres/backend/src/main.rs` (+35 -86) ➕ `react-rust-postgres/backend/src/postgres.rs` (+40 -0) ➖ `react-rust-postgres/backend/src/schema.rs` (+0 -6) 📝 `react-rust-postgres/backend/src/user.rs` (+16 -9) 📝 `react-rust-postgres/docker-compose.yaml` (+10 -1) 📝 `react-rust-postgres/frontend/src/App.js` (+3 -3) </details> ### 📄 Description fixes #149 closes #151 In order to not be forced to use the nightly version of rust, this replaces Rocket by Actix-web, which is faster than Rocket, and Diesel by Deadpool-postgres which is baster and simpler. Signed-off-by: Jérémie Drouet <jeremie.drouet@gmail.com> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-03-07 21:25:18 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-compose#852