From f9bc9f2d06a8088f565208e940b51af49d8ffce7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Haudebourg?= Date: Thu, 25 Jul 2024 14:26:51 +0200 Subject: [PATCH] Version 3.2 --- Cargo.toml | 20 ++++++++++++++------ crates/core/Cargo.toml | 12 ++++++------ crates/macros/Cargo.toml | 12 ++++++------ 3 files changed, 26 insertions(+), 18 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 73a866a..4e6c9e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,15 +1,23 @@ -[package] -name = "iref" -version = "3.1.4" +[workspace.package] +version = "3.2.0" edition = "2021" authors = ["Timothée Haudebourg "] categories = ["web-programming", "internationalization"] keywords = ["iri", "uri", "url", "resource", "identifier"] +license = "MIT/Apache-2.0" + +[package] +name = "iref" description = "Uniform & Internationalized Resource Identifiers (URIs/IRIs), borrowed and owned." repository = "https://github.com/timothee-haudebourg/iref" documentation = "https://docs.rs/iref" -license = "MIT/Apache-2.0" readme = "README.md" +version.workspace = true +edition.workspace = true +authors.workspace = true +categories.workspace = true +keywords.workspace = true +license.workspace = true [features] default = [] @@ -18,8 +26,8 @@ serde = ["iref-core/serde"] data = ["iref-core/data"] [workspace.dependencies] -iref-core = { path = "crates/core", version = "3.1.4" } -iref-macros = { path = "crates/macros", version = "3.1.4" } +iref-core = { path = "crates/core", version = "3.2.0" } +iref-macros = { path = "crates/macros", version = "3.2.0" } [dependencies] iref-core.workspace = true diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 6a162d0..247becd 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "iref-core" -version = "3.1.4" -edition = "2021" -authors = ["Timothée Haudebourg "] -categories = ["web-programming", "internationalization"] -keywords = ["iri", "uri", "url", "resource", "identifier"] description = "Uniform & Internationalized Resource Identifiers (URIs/IRIs), borrowed and owned." repository = "https://github.com/timothee-haudebourg/iref" documentation = "https://docs.rs/iref" -license = "MIT/Apache-2.0" readme = "README.md" +version.workspace = true +edition.workspace = true +authors.workspace = true +categories.workspace = true +keywords.workspace = true +license.workspace = true [features] default = [] diff --git a/crates/macros/Cargo.toml b/crates/macros/Cargo.toml index 81a447b..15f4b7b 100644 --- a/crates/macros/Cargo.toml +++ b/crates/macros/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "iref-macros" -version = "3.1.4" -edition = "2021" -authors = ["Timothée Haudebourg "] -categories = ["web-programming", "internationalization"] -keywords = ["iri", "uri", "url", "resource", "identifier"] description = "Macros for the `iref` library" repository = "https://github.com/timothee-haudebourg/iref" documentation = "https://docs.rs/iref" -license = "MIT/Apache-2.0" readme = "README.md" +version.workspace = true +edition.workspace = true +authors.workspace = true +categories.workspace = true +keywords.workspace = true +license.workspace = true [lib] proc-macro = true