Skip to content
This repository was archived by the owner on May 19, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
[workspace]
members = ["yamlpath", "yp"]
resolver = "2"

[workspace.package]
version = "0.17.0"
authors = ["William Woodruff <william@yossarian.net>"]
description = "Format-preserving YAML feature extraction"
repository = "https://github.com/zizmorcore/yamlpath"
readme = "../README.md"
keywords = ["yaml"]
edition = "2024"
license = "MIT"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
16 changes: 8 additions & 8 deletions yamlpath/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "yamlpath"
version = "0.16.0"
description = "Format-preserving YAML feature extraction"
authors = ["William Woodruff <william@yossarian.net>"]
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"
Expand Down
10 changes: 8 additions & 2 deletions yp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down