Skip to content

Commit 6146670

Browse files
committed
Update Rust edition across the board
1 parent 5e43177 commit 6146670

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

contracts/cw1-subkeys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cw1-subkeys"
33
version = "0.16.0"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
5-
edition = "2018"
5+
edition = "2022"
66
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract"
77
license = "Apache-2.0"
88
repository = "https://github.com/CosmWasm/cw-plus"

contracts/cw1-whitelist/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cw1-whitelist"
33
version = "0.16.0"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
5-
edition = "2018"
5+
edition = "2022"
66
description = "Implementation of an proxy contract using a whitelist"
77
license = "Apache-2.0"
88
repository = "https://github.com/CosmWasm/cw-plus"

contracts/cw20-base/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cw20-base"
33
version = "0.16.0"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
5-
edition = "2018"
5+
edition = "2022"
66
description = "Basic implementation of a CosmWasm-20 compliant token"
77
license = "Apache-2.0"
88
repository = "https://github.com/CosmWasm/cw-plus"

contracts/cw20-ics20/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cw20-ics20"
33
version = "0.16.0"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
5-
edition = "2018"
5+
edition = "2022"
66
description = "IBC Enabled contracts that receives CW20 tokens and sends them over ICS20 to a remote chain"
77
license = "Apache-2.0"
88
repository = "https://github.com/CosmWasm/cw-plus"

contracts/cw3-fixed-multisig/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cw3-fixed-multisig"
33
version = "0.16.0"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
5-
edition = "2018"
5+
edition = "2022"
66
description = "Implementing cw3 with an fixed group multisig"
77
license = "Apache-2.0"
88
repository = "https://github.com/CosmWasm/cw-plus"

contracts/cw3-flex-multisig/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cw3-flex-multisig"
33
version = "0.16.0"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
5-
edition = "2018"
5+
edition = "2022"
66
description = "Implementing cw3 with multiple voting patterns and dynamic groups"
77
license = "Apache-2.0"
88
repository = "https://github.com/CosmWasm/cw-plus"

contracts/cw4-group/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cw4-group"
33
version = "0.16.0"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
5-
edition = "2018"
5+
edition = "2022"
66
description = "Simple cw4 implementation of group membership controlled by admin "
77
license = "Apache-2.0"
88
repository = "https://github.com/CosmWasm/cw-plus"

contracts/cw4-stake/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cw4-stake"
33
version = "0.16.0"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
5-
edition = "2018"
5+
edition = "2022"
66
description = "CW4 implementation of group based on staked tokens"
77
license = "Apache-2.0"
88
repository = "https://github.com/CosmWasm/cw-plus"

packages/controllers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cw-controllers"
33
version = "0.16.0"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
5-
edition = "2018"
5+
edition = "2022"
66
description = "Common controllers we can reuse in many contracts"
77
license = "Apache-2.0"
88
repository = "https://github.com/CosmWasm/cw-plus"

packages/cw1/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cw1"
33
version = "0.16.0"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
5-
edition = "2018"
5+
edition = "2022"
66
description = "Definition and types for the CosmWasm-1 interface"
77
license = "Apache-2.0"
88
repository = "https://github.com/CosmWasm/cw-plus"

0 commit comments

Comments
 (0)