diff --git a/Cargo.toml b/Cargo.toml index 81c3d7f..24b9ae9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.1.0" +version = "0.2.0" edition = "2021" rust-version = "1.83" 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" semicolon_if_nothing_returned = "warn" str_to_string = "warn" -clone_on_ref_ptr = "warn" \ No newline at end of file +clone_on_ref_ptr = "warn" diff --git a/README.md b/README.md index ee3a261..bbc73b0 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Add the following to your `Cargo.toml`: ```toml [dependencies] -static-serve = "0.1" +static-serve = "0.2" axum = "0.8" ``` diff --git a/static-serve/Cargo.toml b/static-serve/Cargo.toml index 2e0d68a..4e747fa 100644 --- a/static-serve/Cargo.toml +++ b/static-serve/Cargo.toml @@ -10,7 +10,7 @@ categories.workspace = true repository.workspace = true [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 } bytes = "1.10" diff --git a/static-serve/README.md b/static-serve/README.md index 146fc81..8879662 100644 --- a/static-serve/README.md +++ b/static-serve/README.md @@ -15,7 +15,7 @@ Add the following to your `Cargo.toml`: ```toml [dependencies] -static-serve = "0.1" +static-serve = "0.2" axum = "0.8" ```