build: release v0.2.0

This commit is contained in:
Paolo Barbolini 2025-04-03 09:52:24 +02:00
parent 2e9b8b28ce
commit d69b4d10f6
4 changed files with 5 additions and 5 deletions

View File

@ -6,7 +6,7 @@ members = [
resolver = "2" resolver = "2"
[workspace.package] [workspace.package]
version = "0.1.0" version = "0.2.0"
edition = "2021" edition = "2021"
rust-version = "1.83" rust-version = "1.83"
description = "A helper for compressing and embedding static assets in an Axum webserver" description = "A helper for compressing and embedding static assets in an Axum webserver"
@ -30,4 +30,4 @@ needless_raw_string_hashes = "warn"
redundant_closure_for_method_calls = "warn" redundant_closure_for_method_calls = "warn"
semicolon_if_nothing_returned = "warn" semicolon_if_nothing_returned = "warn"
str_to_string = "warn" str_to_string = "warn"
clone_on_ref_ptr = "warn" clone_on_ref_ptr = "warn"

View File

@ -18,7 +18,7 @@ Add the following to your `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
static-serve = "0.1" static-serve = "0.2"
axum = "0.8" axum = "0.8"
``` ```

View File

@ -10,7 +10,7 @@ categories.workspace = true
repository.workspace = true repository.workspace = true
[dependencies] [dependencies]
static-serve-macro = { path = "../static-serve-macro", version = "0.1.0" } static-serve-macro = { path = "../static-serve-macro", version = "0.2.0" }
axum = { version = "0.8", default-features = false } axum = { version = "0.8", default-features = false }
bytes = "1.10" bytes = "1.10"

View File

@ -15,7 +15,7 @@ Add the following to your `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
static-serve = "0.1" static-serve = "0.2"
axum = "0.8" axum = "0.8"
``` ```