Skip to content

Commit e3f6828

Browse files
Merge pull request #1126 from mintlayer/fix/version
Update versions, unify them, and similar
2 parents b798498 + 31891b8 commit e3f6828

File tree

8 files changed

+691
-655
lines changed

8 files changed

+691
-655
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ homepage = "https://mintlayer.org"
55
repository = "https://github.com/mintlayer/mintlayer-core"
66
readme = "README.md"
77
license = "MIT"
8-
version = "0.1.0"
8+
version = "0.1.1"
99
authors = ["Samer Afach <[email protected]>", "Ben Marsh <[email protected]>", "Enrico Rubboli <[email protected]>"]
1010
edition = "2021"
1111

@@ -96,7 +96,7 @@ utxo = { path = "utxo"}
9696
[workspace.package]
9797
edition = "2021"
9898
rust-version = "1.67"
99-
version = "0.1.0"
99+
version = "0.1.1"
100100
license = "MIT"
101101

102102
[workspace.dependencies]
@@ -115,14 +115,14 @@ cfg-if = "1.0"
115115
chacha20poly1305 = "0.10"
116116
chrono = "0.4"
117117
clap = "4"
118-
criterion = "0.4"
118+
criterion = "0.5"
119119
crossterm = "0.26"
120120
derive_more = "0.99"
121121
directories = "5.0"
122122
enum-iterator = "1.4"
123123
env_logger = "0.10"
124124
expect-test = "1.3"
125-
fallible-iterator = "0.2"
125+
fallible-iterator = "0.3"
126126
fixed-hash = "0.8"
127127
flate2 = "1.0"
128128
fs4 = "0.6"
@@ -136,15 +136,15 @@ hyper = "0.14"
136136
iced = "0.9"
137137
iced_aw = "0.5"
138138
iced_lazy = "0.6"
139-
itertools = "0.10"
139+
itertools = "0.11"
140140
jsonrpsee = "0.17"
141141
lazy_static = "1.4"
142142
libtest-mimic = "0.6"
143143
log = "0.4"
144-
loom = "0.5"
144+
loom = "0.6"
145145
mockall = "0.11"
146146
num = "0.4"
147-
num-derive = "0.3"
147+
num-derive = "0.4"
148148
num-traits = "0.2"
149149
once_cell = "1.13"
150150
oneshot = "0.1"
@@ -158,12 +158,12 @@ qrcodegen = "1.8"
158158
quote = "1.0"
159159
rand = "0.8"
160160
rand_chacha = "0.3"
161-
reedline = "0.19"
161+
reedline = "0.22"
162162
replace_with = "0.1"
163163
rfd = { version = "0.11", default-features = false }
164164
ripemd = "0.1"
165-
rlimit = "0.9"
166-
rstest = "0.17"
165+
rlimit = "0.10"
166+
rstest = "0.18"
167167
rusqlite = "0.29"
168168
schnorrkel = "0.10"
169169
serde = "1.0"

test-rpc-functions/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
22
name = "test-rpc-functions"
3-
version = "0.1.0"
4-
edition = "2021"
3+
license.workspace = true
4+
edition.workspace = true
5+
version.workspace = true
6+
rust-version.workspace = true
57

68
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
79

wallet/wallet-cli-lib/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
22
name = "wallet-cli-lib"
3-
version = "0.1.0"
4-
edition = "2021"
3+
license.workspace = true
4+
edition.workspace = true
5+
version.workspace = true
6+
rust-version.workspace = true
57

68
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
79

wallet/wallet-cli-lib/tests/basic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ async fn wallet_cli_basic(#[case] seed: Seed) {
2828
let test = CliTestFramework::setup(&mut rng).await;
2929

3030
let output = test.run(&["nodeversion"]).await;
31-
assert_eq!(output, vec!["0.1.0"]);
31+
assert_eq!(output, vec![env!("CARGO_PKG_VERSION")]);
3232

3333
let output = test.run(&["bestblockheight"]).await;
3434
assert_eq!(output, vec!["0"]);

wallet/wallet-cli/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
22
name = "wallet-cli"
3-
version = "0.1.0"
4-
edition = "2021"
3+
license.workspace = true
4+
edition.workspace = true
5+
version.workspace = true
6+
rust-version.workspace = true
57

68
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
79

wallet/wallet-controller/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
22
name = "wallet-controller"
3-
version = "0.1.0"
4-
edition = "2021"
3+
license.workspace = true
4+
edition.workspace = true
5+
version.workspace = true
6+
rust-version.workspace = true
57

68
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
79

wallet/wallet-node-client/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
22
name = "node-comm"
3-
version = "0.1.0"
4-
edition = "2021"
3+
license.workspace = true
4+
edition.workspace = true
5+
version.workspace = true
6+
rust-version.workspace = true
57

68
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
79

0 commit comments

Comments
 (0)