Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
rustc_version:
description: "Rustc version"
required: true
default: "1.75.0"
default: "1.81.0"

jobs:
check:
Expand All @@ -24,7 +24,7 @@ jobs:
- name: Install msrv toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ github.event.inputs.rustc_version || '1.75.0' }}
toolchain: ${{ github.event.inputs.rustc_version || '1.81.0' }}

- uses: Swatinem/rust-cache@v1

Expand All @@ -46,10 +46,10 @@ jobs:
- name: Install msrv toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ github.event.inputs.rustc_version || '1.75.0' }}
toolchain: ${{ github.event.inputs.rustc_version || '1.81.0' }}

- uses: Swatinem/rust-cache@v1

- name: Install cargo-expand
run: cargo install --locked [email protected]

Expand All @@ -71,7 +71,7 @@ jobs:
uses: dtolnay/rust-toolchain@master
with:
components: rustfmt, clippy
toolchain: ${{ github.event.inputs.rustc_version || '1.75.0' }}
toolchain: ${{ github.event.inputs.rustc_version || '1.81.0' }}

- uses: Swatinem/rust-cache@v1

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
rustc_version:
description: "Rustc version"
required: true
default: "1.75.0"
default: "1.81.0"

jobs:
crates_io_publish:
Expand All @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ github.event.inputs.rustc_version || '1.75.0' }}
toolchain: ${{ github.event.inputs.rustc_version || '1.81.0' }}

- name: cargo-release Cache
id: cargo_release_cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
}

- name: Install msrv toolchain
uses: dtolnay/rust-toolchain@1.75.0
uses: dtolnay/rust-toolchain@1.81.0

- name: Bump workspace version
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Crates.io](https://img.shields.io/crates/v/ngyn.svg)](https://crates.io/crates/ngyn)
[![Docs.rs](https://docs.rs/ngyn/badge.svg)](https://ngyn.rs)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE.md)
![MSRV](https://img.shields.io/badge/MSRV-1.75-blue)
![MSRV](https://img.shields.io/badge/MSRV-1.81.0-blue)
[![Made in Nigeria](https://img.shields.io/badge/made%20in-nigeria-008751.svg?style=flat-square)](https://github.com/acekyd/made-in-nigeria)

A modern, ergonomic web framework written in Rust for building high-performance web applications.
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
documentation = "https://ngyn.rs/docs"
repository = "https://github.com/ngyn-rs/ngyn"
homepage = "https://ngyn.rs"
rust-version = "1.75"
rust-version = "1.81.0"

[lib]
path = "src/lib.rs"
Expand Down
10 changes: 8 additions & 2 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,17 @@ version = "0.5.2"
edition = "2021"
description = "Modular backend framework for web applications"
license = "MIT"
rust-version = "1.75"
rust-version = "1.81.0"
documentation = "https://ngyn.rs/docs"
repository = "https://github.com/ngyn-rs/ngyn"
homepage = "https://ngyn.rs"
keywords = ["web-apps", "web-server", "web-framework", "back-end", "applications"]
keywords = [
"web-apps",
"web-server",
"web-framework",
"back-end",
"applications",
]

[lib]
path = "src/lib.rs"
Expand Down
2 changes: 1 addition & 1 deletion crates/hyper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
documentation = "https://ngyn.rs/docs"
repository = "https://github.com/ngyn-rs/ngyn"
homepage = "https://ngyn.rs"
rust-version = "1.75"
rust-version = "1.81.0"
keywords = ["ngyn", "run-time", "platform", "hyper", "framework"]

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
documentation = "https://ngyn.rs/docs"
repository = "https://github.com/ngyn-rs/ngyn"
homepage = "https://ngyn.rs"
rust-version = "1.75"
rust-version = "1.81.0"

[dependencies]
http = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
documentation = "https://ngyn.rs/docs"
repository = "https://github.com/ngyn-rs/ngyn"
homepage = "https://ngyn.rs"
rust-version = "1.75"
rust-version = "1.81.0"
keywords = ["ngyn", "shared", "platform", "framework"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion crates/shuttle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
documentation = "https://ngyn.rs/docs"
repository = "https://github.com/ngyn-rs/ngyn"
homepage = "https://ngyn.rs"
rust-version = "1.75"
rust-version = "1.81"
keywords = ["ngyn", "run-time", "platform", "shuttle", "framework"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion crates/swagger-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
documentation = "https://ngyn.rs/docs"
repository = "https://github.com/ngyn-rs/ngyn"
homepage = "https://ngyn.rs"
rust-version = "1.75"
rust-version = "1.81"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion crates/swagger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
documentation = "https://ngyn.rs/docs"
repository = "https://github.com/ngyn-rs/ngyn"
homepage = "https://ngyn.rs"
rust-version = "1.75"
rust-version = "1.81"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion crates/vercel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
documentation = "https://ngyn.rs/docs"
repository = "https://github.com/ngyn-rs/ngyn"
homepage = "https://ngyn.rs"
rust-version = "1.75"
rust-version = "1.81"
keywords = ["ngyn", "run-time", "platform", "vercel", "framework"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion crates/ws/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
documentation = "https://ngyn.rs/docs"
repository = "https://github.com/ngyn-rs/ngyn"
homepage = "https://ngyn.rs"
rust-version = "1.75"
rust-version = "1.81"
keywords = ["ngyn", "run-time", "platform", "websockets", "framework"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion examples/basic_app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.80 AS builder
FROM rust:1.81 AS builder

WORKDIR /app
COPY . .
Expand Down
Loading