Skip to content

Commit

Permalink
fix: Update consensus dependencies, bump to v0.1.1 (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
exdx authored Aug 31, 2023
1 parent 2ef6757 commit 3852289
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ members = [
# by default, only document and build key library crates
default-members = ["crates/avalanche-types", "crates/avalanche-consensus"]

workspace.resolver = "2"

[workspace.package]
version = "0.1.0"
version = "0.1.1"
authors = ["gyuho", "hexfusion", "exdx", "richardpringle"]
description = "A collection of Avalanche-specific Rust crates"
license-file = "LICENSE"
Expand Down
4 changes: 2 additions & 2 deletions crates/avalanche-consensus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
# https://crates.io/crates/avalanche-consensus/versions
name = "avalanche-consensus"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.70" # use "rustup override set stable" to overwrite current toolchain
publish = true
Expand All @@ -11,7 +11,7 @@ homepage = "https://avax.network"
repository = "https://github.com/ava-labs/avalanche-rs/tree/main/crates/avalanche-consensus"

[dependencies]
avalanche-types = { path = "../../crates/avalanche-types", features = [] } # https://crates.io/crates/avalanche-types
avalanche-types = { version = "0.1.1", path = "../../crates/avalanche-types", features = [] } # https://crates.io/crates/avalanche-types
bytes = "1.4.0"
log = "0.4.20"
serde = { version = "1.0.186", features = ["derive"] } # https://github.com/serde-rs/serde/releases
Expand Down
2 changes: 1 addition & 1 deletion crates/avalanche-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "avalanche-types"
version = "0.1.0" # https://crates.io/crates/avalanche-types
version = "0.1.1" # https://crates.io/crates/avalanche-types
edition = "2021"
rust-version = "1.70" # use "rustup override set stable" to overwrite current toolchain
publish = true
Expand Down

0 comments on commit 3852289

Please sign in to comment.