diff --git a/Cargo.lock b/Cargo.lock index cdb7851..dc22f34 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -454,7 +454,7 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "yamlpath" -version = "0.16.0" +version = "0.17.0" dependencies = [ "serde", "serde_yaml", @@ -465,7 +465,7 @@ dependencies = [ [[package]] name = "yp" -version = "0.1.0" +version = "0.17.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index b0ec010..e29e671 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,13 @@ [workspace] members = ["yamlpath", "yp"] resolver = "2" + +[workspace.package] +version = "0.17.0" +authors = ["William Woodruff "] +description = "Format-preserving YAML feature extraction" +repository = "https://github.com/zizmorcore/yamlpath" +readme = "../README.md" +keywords = ["yaml"] +edition = "2024" +license = "MIT" diff --git a/README.md b/README.md index 94ade59..37783d8 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # yamlpath -[![CI](https://github.com/woodruffw/yamlpath/actions/workflows/ci.yml/badge.svg)](https://github.com/woodruffw/yamlpath/actions/workflows/ci.yml) +[![CI](https://github.com/zizmorcore/yamlpath/actions/workflows/ci.yml/badge.svg)](https://github.com/zizmorcore/yamlpath/actions/workflows/ci.yml) [![Crates.io](https://img.shields.io/crates/v/yamlpath)](https://crates.io/crates/yamlpath) [![docs.rs](https://img.shields.io/docsrs/yamlpath)](https://docs.rs/yamlpath) diff --git a/yamlpath/Cargo.toml b/yamlpath/Cargo.toml index e8d7951..f4c20e7 100644 --- a/yamlpath/Cargo.toml +++ b/yamlpath/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "yamlpath" -version = "0.16.0" -description = "Format-preserving YAML feature extraction" -authors = ["William Woodruff "] -repository = "https://github.com/woodruffw/yamlpath" -readme = "../README.md" -keywords = ["yaml"] -edition = "2024" -license = "MIT" +version.workspace = true +authors.workspace = true +description.workspace = true +repository.workspace = true +readme.workspace = true +keywords.workspace = true +edition.workspace = true +license.workspace = true [dependencies] thiserror = "2" diff --git a/yp/Cargo.toml b/yp/Cargo.toml index d072f8b..aa77eda 100644 --- a/yp/Cargo.toml +++ b/yp/Cargo.toml @@ -1,7 +1,13 @@ [package] name = "yp" -version = "0.1.0" -edition = "2024" +version.workspace = true +authors.workspace = true +description.workspace = true +repository.workspace = true +readme.workspace = true +keywords.workspace = true +edition.workspace = true +license.workspace = true [dependencies] anyhow = "1.0.98"