Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
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
54 changes: 27 additions & 27 deletions Cargo.lock

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

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,20 @@ members = [
resolver = "2"

[workspace.dependencies]
commonware-broadcast = { version = "0.0.56", path = "broadcast" }
commonware-codec = { version = "0.0.56", path = "codec" }
commonware-coding = { version = "0.0.56", path = "coding" }
commonware-collector = { version = "0.0.56", path = "collector" }
commonware-consensus = { version = "0.0.56", path = "consensus" }
commonware-cryptography = { version = "0.0.56", path = "cryptography" }
commonware-deployer = { version = "0.0.56", path = "deployer", default-features = false }
commonware-macros = { version = "0.0.56", path = "macros" }
commonware-p2p = { version = "0.0.56", path = "p2p" }
commonware-resolver = { version = "0.0.56", path = "resolver" }
commonware-runtime = { version = "0.0.56", path = "runtime" }
commonware-storage = { version = "0.0.56", path = "storage" }
commonware-stream = { version = "0.0.56", path = "stream" }
commonware-utils = { version = "0.0.56", path = "utils" }
commonware-broadcast = { version = "0.0.57", path = "broadcast" }
commonware-codec = { version = "0.0.57", path = "codec" }
commonware-coding = { version = "0.0.57", path = "coding" }
commonware-collector = { version = "0.0.57", path = "collector" }
commonware-consensus = { version = "0.0.57", path = "consensus" }
commonware-cryptography = { version = "0.0.57", path = "cryptography" }
commonware-deployer = { version = "0.0.57", path = "deployer", default-features = false }
commonware-macros = { version = "0.0.57", path = "macros" }
commonware-p2p = { version = "0.0.57", path = "p2p" }
commonware-resolver = { version = "0.0.57", path = "resolver" }
commonware-runtime = { version = "0.0.57", path = "runtime" }
commonware-storage = { version = "0.0.57", path = "storage" }
commonware-stream = { version = "0.0.57", path = "stream" }
commonware-utils = { version = "0.0.57", path = "utils" }
thiserror = "2.0.12"
bytes = "1.7.1"
sha2 = "0.10.8"
Expand Down
2 changes: 1 addition & 1 deletion broadcast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "commonware-broadcast"
edition = "2021"
publish = true
version = "0.0.56"
version = "0.0.57"
license = "MIT OR Apache-2.0"
description = "Disseminate data over a wide-area network."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion codec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "commonware-codec"
edition = "2021"
publish = true
version = "0.0.56"
version = "0.0.57"
license = "MIT OR Apache-2.0"
description = "Serialize structured data."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion codec/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "commonware-codec-fuzz"
version = "0.0.56"
version = "0.0.57"
publish = false
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion coding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "commonware-coding"
edition = "2021"
publish = true
version = "0.0.56"
version = "0.0.57"
license = "MIT OR Apache-2.0"
description = "Encode data to enable recovery from a subset of fragments."
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions coding/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "commonware-coding-fuzz"
version = "0.0.56"
version = "0.0.57"
publish = false
edition = "2021"

Expand All @@ -21,4 +21,4 @@ name = "reed_solomon"
path = "fuzz_targets/reed_solomon.rs"
test = false
doc = false
bench = false
bench = false
2 changes: 1 addition & 1 deletion collector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "commonware-collector"
edition = "2021"
publish = true
version = "0.0.56"
version = "0.0.57"
license = "MIT OR Apache-2.0"
description = "Collect responses to committable requests."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "commonware-consensus"
edition = "2021"
publish = true
version = "0.0.56"
version = "0.0.57"
license = "MIT OR Apache-2.0"
description = "Order opaque messages in a Byzantine environment."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion cryptography/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "commonware-cryptography"
edition = "2021"
publish = true
version = "0.0.56"
version = "0.0.57"
license = "MIT OR Apache-2.0"
description = "Generate keys, sign arbitrary messages, and deterministically verify signatures."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion cryptography/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "commonware-cryptography-fuzz"
version = "0.0.56"
version = "0.0.57"
publish = false
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion deployer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "commonware-deployer"
edition = "2021"
publish = true
version = "0.0.56"
version = "0.0.57"
license = "MIT OR Apache-2.0"
description = "Deploy infrastructure across cloud providers."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion examples/bridge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "commonware-bridge"
edition = "2021"
publish = true
version = "0.0.56"
version = "0.0.57"
license = "MIT OR Apache-2.0"
description = "Send succinct consensus certificates between two networks."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion examples/chat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "commonware-chat"
edition = "2021"
publish = true
version = "0.0.56"
version = "0.0.57"
license = "MIT OR Apache-2.0"
description = "Send encrypted messages to a group of friends using commonware-cryptography and commonware-p2p."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion examples/estimator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "commonware-estimator"
edition = "2021"
publish = true
version = "0.0.56"
version = "0.0.57"
license = "MIT OR Apache-2.0"
description = "Simulate mechanism performance under realistic network conditions."
readme = "README.md"
Expand Down
Loading
Loading