Fix unneded dep & bump version to 0.3.5

This commit is contained in:
Tristan D. 2025-04-16 15:40:31 +02:00
parent 621f0670ce
commit c7d4ba974b
Signed by: tristan
SSH key fingerprint: SHA256:9oFM1J63hYWJjCnLG6C0fxBS15rwNcWwdQNMOHYKJ/4
3 changed files with 7 additions and 3 deletions

View file

@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.
- Nothing yet - Nothing yet
## [0.3.5] - 2025-04-16
- Moved macrotest to dev deps
## [0.3.4] - 2025-04-16 ## [0.3.4] - 2025-04-16
- Refactored huge lib.rs into 3 seperate files. - Refactored huge lib.rs into 3 seperate files.

2
Cargo.lock generated
View file

@ -94,7 +94,7 @@ dependencies = [
[[package]] [[package]]
name = "axum-folder-router" name = "axum-folder-router"
version = "0.3.4" version = "0.3.5"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"axum", "axum",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "axum-folder-router" name = "axum-folder-router"
version = "0.3.4" version = "0.3.5"
edition = "2021" edition = "2021"
readme = "./README.md" readme = "./README.md"
authors = ["Tristan Druyen <ek36g2vcc@mozmail.com>"] authors = ["Tristan Druyen <ek36g2vcc@mozmail.com>"]
@ -20,7 +20,6 @@ syn = { version = "2.0", features = ["full"] }
quote = "1.0" quote = "1.0"
proc-macro2 = "1.0" proc-macro2 = "1.0"
glob = "0.3" glob = "0.3"
macrotest = "1.1.0"
regex = "1.11.1" regex = "1.11.1"
[dev-dependencies] [dev-dependencies]
@ -28,6 +27,7 @@ anyhow = "1.0.98"
axum = "0.8.3" axum = "0.8.3"
tokio = { version = "1.44.2", features = ["full"] } tokio = { version = "1.44.2", features = ["full"] }
trybuild = "1.0.104" trybuild = "1.0.104"
macrotest = "1.1.0"
[lints.clippy] [lints.clippy]
pedantic = { level = "warn", priority = -1 } pedantic = { level = "warn", priority = -1 }