Skip to content

Commit 123b7df

Browse files
committed
Rename framework
1 parent 66c322f commit 123b7df

File tree

7 files changed

+61
-61
lines changed

7 files changed

+61
-61
lines changed

framework/Cargo.lock

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

framework/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
2-
name = "my_rust_framework"
3-
version = "0.0.3"
2+
name = "full_stack_engine"
3+
version = "1.0.0"
44
edition = "2024"
55
description = "A lightweight, opinionated Rust web framework built on top of Actix-web, SQLx, and Tera."
66
license = "MIT OR Apache-2.0"
7-
repository = "https://github.com/StevenUster/my_rust_framework"
7+
repository = "https://github.com/StevenUster/full_stack_engine"
88
readme = "README.md"
99
keywords = ["web", "framework", "actix-web", "sqlx", "tera"]
1010
categories = ["web-programming"]
1111

1212
[lib]
13-
name = "my_rust_framework"
13+
name = "full_stack_engine"
1414
path = "src/lib.rs"
1515

1616
[dependencies]

framework/src/prelude.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Prelude for the `my_rust_framework` crate.
1+
//! Prelude for the `full_stack_engine` crate.
22
//!
33
//! This module re-exports common types and traits for ease of use.
44

starter/Cargo.lock

Lines changed: 26 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

starter/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ sqlx = { version = "0.8.6", features = [
1515
"tls-native-tls",
1616
] }
1717
dotenv = "0.15.0"
18-
# my_rust_framework = "0.0.3"
19-
my_rust_framework = { path = "../framework" }
18+
# full_stack_engine = "0.0.3"
19+
full_stack_engine = { path = "../framework" }
2020

2121
[profile.release]
2222
lto = true

starter/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![deny(warnings, unused_imports, dead_code, clippy::all, clippy::pedantic)]
22

3-
use crate::include_dir::{include_dir, Dir};
4-
pub use my_rust_framework::prelude::*;
3+
use crate::include_dir::{Dir, include_dir};
4+
pub use full_stack_engine::prelude::*;
55

66
mod cronjobs;
77
mod services;

starter/src/services/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use crate::web;
2-
use my_rust_framework::rate_limiter::auth_rate_limiter;
2+
use full_stack_engine::rate_limiter::auth_rate_limiter;
33

44
mod index;
55
mod login;

0 commit comments

Comments
 (0)