Skip to content

Commit feb4700

Browse files
committed
build: bump v2.4.4
1 parent 365b782 commit feb4700

File tree

3 files changed

+21
-12
lines changed

3 files changed

+21
-12
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33
## Unreleased
4+
5+
## v2.4.4
46
### Changed
57
- Logs Inertia page in debug on every render & when a rendering fails (even if logs are not in debug mode).
68

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
[package]
2-
version = "2.4.3"
2+
version = "2.4.4"
33
name = "inertia-rust"
44
description = "A Rust server-adapter for building modern MVC web apps with Inertia."
55
repository = "https://github.com/KaioFelps/inertia-rust"
66
keywords = ["inertiajs", "front-end", "react", "svelte", "vue"]
7-
categories = ["network-programming", "template-engine", "visualization", "web-programming", "web-programming::http-server"]
7+
categories = [
8+
"network-programming",
9+
"template-engine",
10+
"visualization",
11+
"web-programming",
12+
"web-programming::http-server",
13+
]
814
edition = "2021"
915
readme = "README.md"
10-
authors = [ "Kaio Felps" ]
16+
authors = ["Kaio Felps"]
1117
license-file = "LICENSE"
12-
exclude = [
13-
"examples/*",
14-
".idea/*",
15-
".vscode/*",
16-
"docs/"
17-
]
18+
exclude = ["examples/*", ".idea/*", ".vscode/*", "docs/"]
1819

1920
[features]
2021
actix = ["dep:actix-web"]
@@ -33,9 +34,15 @@ futures = "~0.3.30"
3334
actix-web = { version = "~4", features = ["default"], optional = true }
3435
vite-rust = { version = "~0.2", optional = true }
3536
futures-util = "~0.3.31"
36-
regex = { version = "1", optional = true}
37+
regex = { version = "1", optional = true }
3738
validator = { version = ">= 0.9, < 1", optional = true }
3839
handlebars = { version = "6", optional = true }
3940

4041
[dev-dependencies]
41-
tokio = { version = "~1", features = ["fs", "io-std", "test-util", "rt", "macros"] }
42+
tokio = { version = "~1", features = [
43+
"fs",
44+
"io-std",
45+
"test-util",
46+
"rt",
47+
"macros",
48+
] }

0 commit comments

Comments
 (0)