diff --git a/crates/nu-cli/Cargo.toml b/crates/nu-cli/Cargo.toml index 68977431..38361ac9 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nu-cli" version = "0.1.0" -edition = "2018" +edition = "2021" [dependencies] nu-engine = { path = "../nu-engine" } diff --git a/crates/nu-color-config/Cargo.toml b/crates/nu-color-config/Cargo.toml index 62b5828b..8979c0c0 100644 --- a/crates/nu-color-config/Cargo.toml +++ b/crates/nu-color-config/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nu-color-config" version = "0.1.0" -edition = "2018" +edition = "2021" [dependencies] nu-protocol = { path = "../nu-protocol" } diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index df95a941..2baeba13 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nu-command" version = "0.1.0" -edition = "2018" +edition = "2021" build = "build.rs" diff --git a/crates/nu-engine/Cargo.toml b/crates/nu-engine/Cargo.toml index 8369d101..0ef8a4aa 100644 --- a/crates/nu-engine/Cargo.toml +++ b/crates/nu-engine/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nu-engine" version = "0.1.0" -edition = "2018" +edition = "2021" [dependencies] nu-protocol = { path = "../nu-protocol", features = ["plugin"] } diff --git a/crates/nu-json/Cargo.toml b/crates/nu-json/Cargo.toml index 6f287645..471972a4 100644 --- a/crates/nu-json/Cargo.toml +++ b/crates/nu-json/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Nu Project Contributors", "Christian Zangl "] description = "Fork of serde-hjson" -edition = "2018" +edition = "2021" license = "MIT" name = "nu-json" version = "0.37.1" diff --git a/crates/nu-parser/Cargo.toml b/crates/nu-parser/Cargo.toml index fe1be63d..d0dd23af 100644 --- a/crates/nu-parser/Cargo.toml +++ b/crates/nu-parser/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nu-parser" version = "0.1.0" -edition = "2018" +edition = "2021" [dependencies] miette = "3.0.0" diff --git a/crates/nu-path/Cargo.toml b/crates/nu-path/Cargo.toml index e2fc2b1a..ee963d01 100644 --- a/crates/nu-path/Cargo.toml +++ b/crates/nu-path/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Nu Project Contributors"] description = "Path handling library for Nushell" -edition = "2018" +edition = "2021" license = "MIT" name = "nu-path" version = "0.37.1" @@ -9,4 +9,3 @@ version = "0.37.1" [dependencies] dirs-next = "2.0.0" dunce = "1.0.1" - diff --git a/crates/nu-plugin/Cargo.toml b/crates/nu-plugin/Cargo.toml index fc5dcc62..996bfe2b 100644 --- a/crates/nu-plugin/Cargo.toml +++ b/crates/nu-plugin/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nu-plugin" version = "0.1.0" -edition = "2018" +edition = "2021" [dependencies] capnp = "0.14.3" @@ -9,6 +9,3 @@ nu-protocol = { path = "../nu-protocol" } nu-engine = { path = "../nu-engine" } serde = {version = "1.0.130", features = ["derive"]} serde_json = { version = "1.0"} - - - diff --git a/crates/nu-pretty-hex/Cargo.toml b/crates/nu-pretty-hex/Cargo.toml index 4e4c3b52..777c1876 100644 --- a/crates/nu-pretty-hex/Cargo.toml +++ b/crates/nu-pretty-hex/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Andrei Volnin ", "The Nu Project Contributors"] description = "Pretty hex dump of bytes slice in the common style." -edition = "2018" +edition = "2021" license = "MIT" name = "nu-pretty-hex" version = "0.41.0" diff --git a/crates/nu-protocol/Cargo.toml b/crates/nu-protocol/Cargo.toml index 51749f52..6083c135 100644 --- a/crates/nu-protocol/Cargo.toml +++ b/crates/nu-protocol/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nu-protocol" version = "0.1.0" -edition = "2018" +edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/nu-table/Cargo.toml b/crates/nu-table/Cargo.toml index aac970b4..b3a1b4fa 100644 --- a/crates/nu-table/Cargo.toml +++ b/crates/nu-table/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Nu Project Contributors"] description = "Nushell table printing" -edition = "2018" +edition = "2021" license = "MIT" name = "nu-table" version = "0.36.0" diff --git a/crates/nu-term-grid/Cargo.toml b/crates/nu-term-grid/Cargo.toml index aa24839b..c524284f 100644 --- a/crates/nu-term-grid/Cargo.toml +++ b/crates/nu-term-grid/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Nu Project Contributors"] description = "Nushell grid printing" -edition = "2018" +edition = "2021" license = "MIT" name = "nu-term-grid" version = "0.36.0" diff --git a/crates/nu_plugin_example/Cargo.toml b/crates/nu_plugin_example/Cargo.toml index 250b4322..89cea551 100644 --- a/crates/nu_plugin_example/Cargo.toml +++ b/crates/nu_plugin_example/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Nu Project Contributors"] description = "A version incrementer plugin for Nushell" -edition = "2018" +edition = "2021" license = "MIT" name = "nu_plugin_example" version = "0.1.0" diff --git a/crates/nu_plugin_gstat/Cargo.toml b/crates/nu_plugin_gstat/Cargo.toml index 7d809ae7..bd862b09 100644 --- a/crates/nu_plugin_gstat/Cargo.toml +++ b/crates/nu_plugin_gstat/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Nu Project Contributors"] description = "A git status plugin for Nushell" -edition = "2018" +edition = "2021" license = "MIT" name = "nu_plugin_gstat" version = "0.1.0" diff --git a/crates/nu_plugin_inc/Cargo.toml b/crates/nu_plugin_inc/Cargo.toml index fe734ae4..f4373102 100644 --- a/crates/nu_plugin_inc/Cargo.toml +++ b/crates/nu_plugin_inc/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Nu Project Contributors"] description = "A version incrementer plugin for Nushell" -edition = "2018" +edition = "2021" license = "MIT" name = "nu_plugin_inc" version = "0.1.0"