Skip to content

Commit

Permalink
Version 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
timothee-haudebourg committed Jul 25, 2024
1 parent 27e3050 commit f9bc9f2
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 18 deletions.
20 changes: 14 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
[package]
name = "iref"
version = "3.1.4"
[workspace.package]
version = "3.2.0"
edition = "2021"
authors = ["Timothée Haudebourg <[email protected]>"]
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 = []
Expand All @@ -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
Expand Down
12 changes: 6 additions & 6 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "iref-core"
version = "3.1.4"
edition = "2021"
authors = ["Timothée Haudebourg <[email protected]>"]
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 = []
Expand Down
12 changes: 6 additions & 6 deletions crates/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "iref-macros"
version = "3.1.4"
edition = "2021"
authors = ["Timothée Haudebourg <[email protected]>"]
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
Expand Down

0 comments on commit f9bc9f2

Please sign in to comment.