Skip to content

Commit 3304de1

Browse files
author
Remco Kuijper
committed
misc: bump Rust to 2021 edition
1 parent c970d80 commit 3304de1

25 files changed

Lines changed: 26 additions & 26 deletions

File tree

crates/mun/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "mun"
33
version = "0.3.0"
44
authors = ["The Mun Team <team@mun-lang.org>"]
5-
edition = "2018"
5+
edition = "2021"
66
description = "Command-line interface for compiling, monitoring and running Mun code"
77
documentation = "https://docs.mun-lang.org/v0.3"
88
readme = "README.md"

crates/mun_abi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "mun_abi"
33
version = "0.3.0"
44
authors = ["The Mun Team <team@mun-lang.org>"]
5-
edition = "2018"
5+
edition = "2021"
66
description = "Rust wrapper for the Mun ABI"
77
documentation = "https://docs.mun-lang.org/v0.3"
88
readme = "README.md"

crates/mun_codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "mun_codegen"
33
version = "0.3.0"
44
authors = ["The Mun Team <team@mun-lang.org>"]
5-
edition = "2018"
5+
edition = "2021"
66
description = "LLVM IR code generation for Mun"
77
documentation = "https://docs.mun-lang.org/v0.3"
88
readme = "README.md"

crates/mun_codegen_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "mun_codegen_macros"
33
version = "0.1.0"
44
authors = ["The Mun Team <team@mun-lang.org>"]
5-
edition = "2018"
5+
edition = "2021"
66
description = "Macros used by mun code generation"
77
documentation = "https://docs.mun-lang.org/v0.3"
88
readme = "README.md"

crates/mun_compiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "mun_compiler"
33
version = "0.3.0"
44
authors = ["The Mun Team <team@mun-lang.org>"]
5-
edition = "2018"
5+
edition = "2021"
66
description = "Binary compilation functionality for Mun"
77
documentation = "https://docs.mun-lang.org/v0.3"
88
readme = "README.md"

crates/mun_compiler_daemon/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "mun_compiler_daemon"
33
version = "0.3.0"
44
authors = ["The Mun Team <team@mun-lang.org>"]
5-
edition = "2018"
5+
edition = "2021"
66
description = "Functionality for continuously monitoring Mun source files for changes and triggering recompilation"
77
documentation = "https://docs.mun-lang.org/v0.3"
88
readme = "README.md"

crates/mun_diagnostics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "mun_diagnostics"
33
version = "0.1.0"
44
authors = ["The Mun Team <team@mun-lang.org>"]
5-
edition = "2018"
5+
edition = "2021"
66
description = "Provides in-depth diagnostic information for compiler errors"
77
documentation = "https://docs.mun-lang.org/v0.3"
88
readme = "README.md"

crates/mun_hir/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "mun_hir"
33
version = "0.3.0"
44
authors = ["The Mun Team <team@mun-lang.org>"]
5-
edition = "2018"
5+
edition = "2021"
66
description = "Provides high-level intermediate representation of Mun code"
77
documentation = "https://docs.mun-lang.org/v0.3"
88
readme = "README.md"

crates/mun_language_server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "mun_language_server"
33
version = "0.1.0"
44
authors = ["The Mun Team <team@mun-lang.org>"]
5-
edition = "2018"
5+
edition = "2021"
66
description = "Provides a language server protocol server for the Mun language"
77
documentation = "https://docs.mun-lang.org/v0.3"
88
readme = "README.md"

crates/mun_libloader/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "mun_libloader"
33
version = "0.1.0"
44
authors = ["The Mun Team <team@mun-lang.org>"]
5-
edition = "2018"
5+
edition = "2021"
66
description = "Functionality for loading Mun libraries"
77
documentation = "https://docs.mun-lang.org/v0.3"
88
readme = "README.md"

0 commit comments

Comments
 (0)