Skip to content
This repository was archived by the owner on Jun 3, 2025. It is now read-only.
Closed
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
10 changes: 5 additions & 5 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions merde/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [10.0.7](https://github.com/bearcove/merde/compare/merde-v10.0.6...merde-v10.0.7) - 2025-04-25

### Other

- updated the following local packages: merde_core, merde_json, merde_msgpack, merde_yaml

## [10.0.6](https://github.com/bearcove/merde/compare/merde-v10.0.5...merde-v10.0.6) - 2025-04-16

### Other
Expand Down
10 changes: 5 additions & 5 deletions merde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "merde"
version = "10.0.6"
version = "10.0.7"
edition = "2021"
authors = ["Amos Wenger <amos@bearcove.net>"]
description = "Serialize and deserialize with declarative macros"
Expand Down Expand Up @@ -61,10 +61,10 @@ path = "examples/mousedown.rs"
required-features = ["json"]

[dependencies]
merde_core = { version = "10.0.5", path = "../merde_core", optional = true }
merde_json = { version = "10.0.5", path = "../merde_json", optional = true }
merde_yaml = { version = "10.0.5", path = "../merde_yaml", optional = true }
merde_msgpack = { version = "10.0.5", path = "../merde_msgpack", optional = true }
merde_core = { version = "10.0.6", path = "../merde_core", optional = true }
merde_json = { version = "10.0.6", path = "../merde_json", optional = true }
merde_yaml = { version = "10.0.6", path = "../merde_yaml", optional = true }
merde_msgpack = { version = "10.0.6", path = "../merde_msgpack", optional = true }
ahash = { version = "0.8.11", optional = true }

[features]
Expand Down
6 changes: 6 additions & 0 deletions merde_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [10.0.6](https://github.com/bearcove/merde/compare/merde_core-v10.0.5...merde_core-v10.0.6) - 2025-04-25

### Other

- Update ordered-float to v5.0.0

## [10.0.5](https://github.com/bearcove/merde/compare/merde_core-v10.0.4...merde_core-v10.0.5) - 2025-04-16

### Other
Expand Down
2 changes: 1 addition & 1 deletion merde_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "merde_core"
version = "10.0.5"
version = "10.0.6"
authors = ["Amos Wenger <amos@bearcove.net>"]
description = "Base types for merde"
license = "Apache-2.0 OR MIT"
Expand Down
6 changes: 6 additions & 0 deletions merde_json/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [10.0.6](https://github.com/bearcove/merde/compare/merde_json-v10.0.5...merde_json-v10.0.6) - 2025-04-25

### Other

- updated the following local packages: merde_core

## [10.0.5](https://github.com/bearcove/merde/compare/merde_json-v10.0.4...merde_json-v10.0.5) - 2025-04-16

### Other
Expand Down
4 changes: 2 additions & 2 deletions merde_json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "merde_json"
version = "10.0.5"
version = "10.0.6"
edition = "2021"
authors = ["Amos Wenger <amos@bearcove.net>"]
description = "JSON serialization and deserialization for merde, via jiter"
Expand All @@ -13,7 +13,7 @@ categories = ["encoding", "parser-implementations"]
[dependencies]
itoa = "1.0.11"
lexical-parse-float = { version = "0.8.5", features = ["format"] }
merde_core = { version = "10.0.5", path = "../merde_core" }
merde_core = { version = "10.0.6", path = "../merde_core" }
ryu = "1.0.18"
tokio = { version = "1", optional = true, features = ["io-util"] }

Expand Down
2 changes: 1 addition & 1 deletion merde_loggingserializer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ edition = "2021"
publish = false

[dependencies]
merde_core = { version = "10.0.5", path = "../merde_core" }
merde_core = { version = "10.0.6", path = "../merde_core" }

6 changes: 6 additions & 0 deletions merde_msgpack/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [10.0.6](https://github.com/bearcove/merde/compare/merde_msgpack-v10.0.5...merde_msgpack-v10.0.6) - 2025-04-25

### Other

- updated the following local packages: merde_core

## [10.0.5](https://github.com/bearcove/merde/compare/merde_msgpack-v10.0.4...merde_msgpack-v10.0.5) - 2025-04-16

### Other
Expand Down
4 changes: 2 additions & 2 deletions merde_msgpack/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "merde_msgpack"
version = "10.0.5"
version = "10.0.6"
edition = "2021"
authors = ["Amos Wenger <amos@bearcove.net>"]
description = "msgpack serizliation/deserialization for merde"
Expand All @@ -11,7 +11,7 @@ keywords = ["msgpack", "messagepack", "serialization", "deserialization"]
categories = ["encoding", "parser-implementations"]

[dependencies]
merde_core = { version = "10.0.5", path = "../merde_core" }
merde_core = { version = "10.0.6", path = "../merde_core" }
rmp = "0.8.14"

[dev-dependencies]
Expand Down
6 changes: 6 additions & 0 deletions merde_yaml/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [10.0.6](https://github.com/bearcove/merde/compare/merde_yaml-v10.0.5...merde_yaml-v10.0.6) - 2025-04-25

### Other

- updated the following local packages: merde_core

## [10.0.5](https://github.com/bearcove/merde/compare/merde_yaml-v10.0.4...merde_yaml-v10.0.5) - 2025-04-16

### Other
Expand Down
4 changes: 2 additions & 2 deletions merde_yaml/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "merde_yaml"
version = "10.0.5"
version = "10.0.6"
edition = "2021"
authors = ["Amos Wenger <amos@bearcove.net>"]
description = "YAML deserialization for merde"
Expand All @@ -11,6 +11,6 @@ keywords = ["yaml", "serialization", "deserialization"]
categories = ["encoding", "parser-implementations"]

[dependencies]
merde_core = { version = "10.0.5", path = "../merde_core" }
merde_core = { version = "10.0.6", path = "../merde_core" }
yaml-rust2 = { version = "0.8.1", default-features = false }