-
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
Showing
4 changed files
with
9 additions
and
6 deletions.
There are no files selected for viewing
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 = "holochain_serialized_bytes" | ||
version = "0.0.53" | ||
version = "0.0.54" | ||
authors = ["Holochain Core Dev Team <[email protected]>"] | ||
description = "serialized bytes for holochain" | ||
keywords = ["holochain", "holo", "messagepack", "json", "serialization"] | ||
|
@@ -14,7 +14,7 @@ edition = "2018" | |
[dependencies] | ||
serde = { version = "=1.0.197", features = ["serde_derive"] } | ||
serde_json = { version = "1.0.51", features = ["preserve_order"] } | ||
holochain_serialized_bytes_derive = { version = "=0.0.53", path = "../holochain_serialized_bytes_derive" } | ||
holochain_serialized_bytes_derive = { version = "=0.0.54", path = "../holochain_serialized_bytes_derive" } | ||
rmp-serde = "=1.1.2" | ||
serde-transcode = "1.1.0" | ||
thiserror = "1.0.10" | ||
|
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,9 +1,9 @@ | ||
[package] | ||
name = "holochain_serialized_bytes_derive" | ||
version = "0.0.53" | ||
version = "0.0.54" | ||
authors = ["Holochain Core Dev Team <[email protected]>"] | ||
description = "Provides derive macros for holochain serialized bytes." | ||
edition="2018" | ||
edition = "2018" | ||
keywords = ["holochain", "holo", "bytes", "serde", "derive"] | ||
categories = ["parsing"] | ||
license = "Apache-2.0" | ||
|
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 = "test_holochain_serialized_bytes" | ||
version = "0.0.53" | ||
version = "0.0.54" | ||
authors = ["Holochain Core Dev Team <[email protected]>"] | ||
description = "test serialized bytes for holochain" | ||
keywords = ["holochain", "holo", "messagepack", "json", "serialization"] | ||
|
@@ -11,7 +11,7 @@ documentation = "https://docs.rs/holochain_serialized_bytes" | |
repository = "https://github.com/holochain/holochain-serialization" | ||
|
||
[dependencies] | ||
holochain_serialized_bytes = { version = "=0.0.53", path = "../../crates/holochain_serialized_bytes" } | ||
holochain_serialized_bytes = { version = "=0.0.54", path = "../../crates/holochain_serialized_bytes" } | ||
serde = "=1.0.197" | ||
|
||
[dev-dependencies] | ||
|