Skip to content

Commit a831c6e

Browse files
* spike * use shared versioning * address breaking changes
1 parent 6805ad7 commit a831c6e

File tree

12 files changed

+155
-171
lines changed

12 files changed

+155
-171
lines changed

Cargo.lock

Lines changed: 110 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,26 @@ members = [
77
]
88
resolver = "2"
99

10+
[workspace.package]
11+
version = "0.0.14"
12+
edition = "2021"
13+
license = "MIT OR Apache-2.0"
14+
1015
[workspace.dependencies]
1116
alto-client = { version = "0.0.14", path = "client" }
1217
alto-types = { version = "0.0.14", path = "types" }
13-
commonware-broadcast = { version = "0.0.58" }
14-
commonware-codec = { version = "0.0.58" }
15-
commonware-consensus = { version = "0.0.58" }
16-
commonware-cryptography = { version = "0.0.58" }
17-
commonware-deployer = { version = "0.0.58", default-features = false }
18-
commonware-macros = { version = "0.0.58" }
19-
commonware-p2p = { version = "0.0.58" }
20-
commonware-resolver = { version = "0.0.58" }
21-
commonware-runtime = { version = "0.0.58" }
22-
commonware-storage = { version = "0.0.58" }
23-
commonware-stream = { version = "0.0.58" }
24-
commonware-utils = { version = "0.0.58" }
18+
commonware-broadcast = { version = "0.0.62" }
19+
commonware-codec = { version = "0.0.62" }
20+
commonware-consensus = { version = "0.0.62" }
21+
commonware-cryptography = { version = "0.0.62" }
22+
commonware-deployer = { version = "0.0.62", default-features = false }
23+
commonware-macros = { version = "0.0.62" }
24+
commonware-p2p = { version = "0.0.62" }
25+
commonware-resolver = { version = "0.0.62" }
26+
commonware-runtime = { version = "0.0.62" }
27+
commonware-storage = { version = "0.0.62" }
28+
commonware-stream = { version = "0.0.62" }
29+
commonware-utils = { version = "0.0.62" }
2530
thiserror = "2.0.12"
2631
bytes = "1.7.1"
2732
rand = "0.8.5"

chain/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "alto-chain"
3-
version = "0.0.14"
3+
version.workspace = true
44
publish = true
5-
edition = "2021"
6-
license = "MIT OR Apache-2.0"
5+
edition.workspace = true
6+
license.workspace = true
77
description = "A minimal (and wicked fast) blockchain built with the Commonware Library."
88
readme = "README.md"
99
homepage = "https://alto.commonware.xyz"

0 commit comments

Comments
 (0)