-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: release * Publish merde_yaml --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Amos Wenger <[email protected]>
- Loading branch information
1 parent
5541bce
commit b23973e
Showing
11 changed files
with
96 additions
and
18 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "merde" | ||
version = "5.1.1" | ||
version = "6.0.0" | ||
edition = "2021" | ||
authors = ["Amos Wenger <[email protected]>"] | ||
description = "Serialize and deserialize with declarative macros" | ||
|
@@ -41,10 +41,10 @@ path = "examples/yaml.rs" | |
required-features = ["yaml"] | ||
|
||
[dependencies] | ||
merde_core = { version = "5.1.0", path = "../merde_core", optional = true } | ||
merde_json = { version = "5.1.0", path = "../merde_json", optional = true } | ||
merde_core = { version = "6.0.0", path = "../merde_core", optional = true } | ||
merde_json = { version = "6.0.0", path = "../merde_json", optional = true } | ||
merde_yaml = { version = "5.1.0", path = "../merde_yaml", optional = true } | ||
merde_time = { version = "4.0.10", path = "../merde_time", optional = true, features = [ | ||
merde_time = { version = "4.0.11", path = "../merde_time", optional = true, features = [ | ||
"merde", | ||
"deserialize", | ||
] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
edition = "2021" | ||
name = "merde_core" | ||
version = "5.1.0" | ||
version = "6.0.0" | ||
authors = ["Amos Wenger <[email protected]>"] | ||
description = "Base types for merde" | ||
license = "Apache-2.0 OR MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "merde_json" | ||
version = "5.1.0" | ||
version = "6.0.0" | ||
edition = "2021" | ||
authors = ["Amos Wenger <[email protected]>"] | ||
description = "JSON serialization and deserialization for merde, via jiter" | ||
|
@@ -12,7 +12,7 @@ categories = ["encoding", "parser-implementations"] | |
|
||
[dependencies] | ||
lexical-parse-float = { version = "0.8.5", features = ["format"] } | ||
merde_core = { version = "5.1.0", path = "../merde_core" } | ||
merde_core = { version = "6.0.0", path = "../merde_core" } | ||
num-bigint = { version = "0.4.6", optional = true } | ||
num-traits = { version = "0.2.19", optional = true } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
edition = "2021" | ||
name = "merde_time" | ||
version = "4.0.10" | ||
version = "4.0.11" | ||
authors = ["Amos Wenger <[email protected]>"] | ||
description = "Wrapper date-time types for merde" | ||
license = "Apache-2.0 OR MIT" | ||
|
@@ -11,8 +11,8 @@ keywords = ["merde", "serialization", "deserialization"] | |
categories = ["encoding", "parser-implementations"] | ||
|
||
[dependencies] | ||
merde_core = { version = "5.1.0", path = "../merde_core", optional = true } | ||
merde_json = { version = "5.1.0", path = "../merde_json", optional = true } | ||
merde_core = { version = "6.0.0", path = "../merde_core", optional = true } | ||
merde_json = { version = "6.0.0", path = "../merde_json", optional = true } | ||
time = "0.3.36" | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters