Skip to content

Commit 81c210c

Browse files
authored
bump edition version (#3959)
1 parent 968e0e3 commit 81c210c

File tree

12 files changed

+10
-12
lines changed

12 files changed

+10
-12
lines changed

explorer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["dev@iohk.io"]
33
description = "explorer service for jormungandr"
44
documentation = "https://github.com/input-output-hk/jormungandr#USAGE.md"
5-
edition = "2018"
5+
edition = "2021"
66
homepage = "https://github.com/input-output-hk/jormungandr#README.md"
77
license = "MIT OR Apache-2.0"
88
name = "explorer"

jcli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation = "https://github.com/input-output-hk/jormungandr#USAGE.md"
99
description = """
1010
Midgard Serpent
1111
"""
12-
edition = "2018"
12+
edition = "2021"
1313

1414
[dependencies]
1515
rand = "0.8"

jormungandr-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "jormungandr-lib"
33
version = "0.13.0"
44
authors = ["dev@iohk.io"]
5-
edition = "2018"
5+
edition = "2021"
66

77
description = "Data structures and formats used by Jormungandr node API and configuration files"
88

jormungandr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation = "https://github.com/input-output-hk/jormungandr#USAGE.md"
99
description = """
1010
Midgard Serpent
1111
"""
12-
edition = "2018"
12+
edition = "2021"
1313

1414
[dependencies]
1515
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }

jormungandr/src/fragment/selection.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ async fn try_apply_fragment(
7979
mut space_left: u32,
8080
) -> Result<NewLedgerState, ApplyFragmentError> {
8181
use futures::future::{select, Either};
82-
use std::convert::TryFrom;
8382

8483
let raw_fragment_size = fragment.serialized_size();
8584
let fragment_size = match u32::try_from(raw_fragment_size) {

jormungandr/src/network/bootstrap.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ pub async fn bootstrap_from_peer(
6868
cancellation_token: CancellationToken,
6969
) -> Result<(), Error> {
7070
use chain_network::data::BlockId;
71-
use std::convert::TryFrom;
7271

7372
async fn with_cancellation_token<T>(
7473
future: impl Future<Output = T> + Unpin,

modules/blockchain/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "blockchain"
33
version = "0.1.0"
44
authors = ["Nicolas Di Prima <nicolas.diprima@iohk.io>"]
5-
edition = "2018"
5+
edition = "2021"
66

77
[dependencies]
88
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }

modules/settings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "settings"
33
version = "0.1.0"
44
authors = ["Nicolas Di Prima <nicolas.diprima@iohk.io>"]
5-
edition = "2018"
5+
edition = "2021"
66

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

testing/hersir/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "hersir"
33
description = "Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes"
44
version = "0.1.0"
5-
edition = "2018"
5+
edition = "2021"
66

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

testing/jormungandr-automation/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "jormungandr-automation"
33
version = "0.13.0"
44
authors = ["Nicolas Di Prima <nicolas.diprima@iohk.io>"]
5-
edition = "2018"
5+
edition = "2021"
66

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

0 commit comments

Comments
 (0)