-
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
6 changed files
with
22 additions
and
8 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_json_api" | ||
version = "0.0.40" | ||
version = "0.0.41" | ||
authors = ["Holochain Core Dev Team <[email protected]>"] | ||
build = "build.rs" | ||
description = "json api and utilities for holochain" | ||
|
@@ -31,7 +31,7 @@ shrinkwraprs = "=0.2.1" | |
objekt = "=0.1.2" | ||
# keep the version on the left hand side | ||
# there is a regex in the release hook looking for it | ||
holochain_json_derive = { version = "=0.0.40", path = "../holochain_json_derive" } | ||
holochain_json_derive = { version = "=0.0.41", path = "../holochain_json_derive" } | ||
uuid = { version = "=0.7.1", features = ["v4"] } | ||
|
||
[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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "holochain_json_derive" | ||
version = "0.0.40" | ||
version = "0.0.41" | ||
authors = ["Holochain Core Dev Team <[email protected]>"] | ||
description = "Provides derive macros for holochain persistence." | ||
edition="2018" | ||
|
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.40" | ||
version = "0.0.41" | ||
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.104", features = ["serde_derive"] } | ||
serde_json = { version = "1.0.51", features = ["preserve_order"] } | ||
holochain_serialized_bytes_derive = { version = "=0.0.40", path = "../holochain_serialized_bytes_derive" } | ||
holochain_serialized_bytes_derive = { version = "=0.0.41", path = "../holochain_serialized_bytes_derive" } | ||
rmp-serde = "0.14.3" | ||
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,6 +1,6 @@ | ||
[package] | ||
name = "holochain_serialized_bytes_derive" | ||
version = "0.0.40" | ||
version = "0.0.41" | ||
authors = ["Holochain Core Dev Team <[email protected]>"] | ||
description = "Provides derive macros for holochain serialized bytes." | ||
edition="2018" | ||
|
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.40" | ||
version = "0.0.41" | ||
authors = ["Holochain Core Dev Team <[email protected]>"] | ||
description = "test serialized bytes for holochain" | ||
keywords = ["holochain", "holo", "messagepack", "json", "serialization"] | ||
|
@@ -11,5 +11,5 @@ documentation = "https://docs.rs/holochain_serialized_bytes" | |
repository = "https://github.com/holochain/holochain-serialization" | ||
|
||
[dependencies] | ||
holochain_serialized_bytes = { version = "=0.0.40", path = "../../crates/holochain_serialized_bytes" } | ||
holochain_serialized_bytes = { version = "=0.0.41", path = "../../crates/holochain_serialized_bytes" } | ||
serde = "=1.0.104" |