-
-
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.
- Loading branch information
1 parent
82d40f4
commit 9fc6876
Showing
12 changed files
with
48 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "merde" | ||
version = "9.0.0" | ||
version = "9.0.1" | ||
edition = "2021" | ||
authors = ["Amos Wenger <[email protected]>"] | ||
description = "Serialize and deserialize with declarative macros" | ||
|
@@ -56,10 +56,10 @@ path = "examples/opinions.rs" | |
required-features = ["json"] | ||
|
||
[dependencies] | ||
merde_core = { version = "9.0.0", path = "../merde_core", optional = true } | ||
merde_json = { version = "9.0.0", path = "../merde_json", optional = true } | ||
merde_yaml = { version = "9.0.0", path = "../merde_yaml", optional = true } | ||
merde_msgpack = { version = "9.0.0", path = "../merde_msgpack", optional = true } | ||
merde_core = { version = "9.0.1", path = "../merde_core", optional = true } | ||
merde_json = { version = "9.0.1", path = "../merde_json", optional = true } | ||
merde_yaml = { version = "9.0.1", path = "../merde_yaml", optional = true } | ||
merde_msgpack = { version = "9.0.1", path = "../merde_msgpack", optional = true } | ||
ahash = { version = "0.8.11", optional = true } | ||
|
||
[features] | ||
|
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 = "9.0.0" | ||
version = "9.0.1" | ||
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 = "9.0.0" | ||
version = "9.0.1" | ||
edition = "2021" | ||
authors = ["Amos Wenger <[email protected]>"] | ||
description = "JSON serialization and deserialization for merde, via jiter" | ||
|
@@ -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 = "9.0.0", path = "../merde_core" } | ||
merde_core = { version = "9.0.1", path = "../merde_core" } | ||
ryu = "1.0.18" | ||
tokio = { version = "1", optional = true, features = ["io-util"] } | ||
|
||
|
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_msgpack" | ||
version = "9.0.0" | ||
version = "9.0.1" | ||
edition = "2021" | ||
authors = ["Amos Wenger <[email protected]>"] | ||
description = "msgpack serizliation/deserialization for merde" | ||
|
@@ -11,7 +11,7 @@ keywords = ["msgpack", "messagepack", "serialization", "deserialization"] | |
categories = ["encoding", "parser-implementations"] | ||
|
||
[dependencies] | ||
merde_core = { version = "9.0.0", path = "../merde_core" } | ||
merde_core = { version = "9.0.1", path = "../merde_core" } | ||
rmp = "0.8.14" | ||
|
||
[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
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_yaml" | ||
version = "9.0.0" | ||
version = "9.0.1" | ||
edition = "2021" | ||
authors = ["Amos Wenger <[email protected]>"] | ||
description = "YAML deserialization for merde" | ||
|
@@ -11,5 +11,5 @@ keywords = ["yaml", "serialization", "deserialization"] | |
categories = ["encoding", "parser-implementations"] | ||
|
||
[dependencies] | ||
merde_core = { version = "9.0.0", path = "../merde_core" } | ||
merde_core = { version = "9.0.1", path = "../merde_core" } | ||
yaml-rust2 = { version = "0.8.1", default-features = false } |