update all cargo crates to edition 2021 (#781)

This commit is contained in:
Michael Angerman 2022-01-20 05:13:45 -08:00 committed by GitHub
parent 54ed82a19a
commit d4b6b4b09a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 15 additions and 19 deletions

View File

@ -1,7 +1,7 @@
[package] [package]
name = "nu-cli" name = "nu-cli"
version = "0.1.0" version = "0.1.0"
edition = "2018" edition = "2021"
[dependencies] [dependencies]
nu-engine = { path = "../nu-engine" } nu-engine = { path = "../nu-engine" }

View File

@ -1,7 +1,7 @@
[package] [package]
name = "nu-color-config" name = "nu-color-config"
version = "0.1.0" version = "0.1.0"
edition = "2018" edition = "2021"
[dependencies] [dependencies]
nu-protocol = { path = "../nu-protocol" } nu-protocol = { path = "../nu-protocol" }

View File

@ -1,7 +1,7 @@
[package] [package]
name = "nu-command" name = "nu-command"
version = "0.1.0" version = "0.1.0"
edition = "2018" edition = "2021"
build = "build.rs" build = "build.rs"

View File

@ -1,7 +1,7 @@
[package] [package]
name = "nu-engine" name = "nu-engine"
version = "0.1.0" version = "0.1.0"
edition = "2018" edition = "2021"
[dependencies] [dependencies]
nu-protocol = { path = "../nu-protocol", features = ["plugin"] } nu-protocol = { path = "../nu-protocol", features = ["plugin"] }

View File

@ -1,7 +1,7 @@
[package] [package]
authors = ["The Nu Project Contributors", "Christian Zangl <laktak@cdak.net>"] authors = ["The Nu Project Contributors", "Christian Zangl <laktak@cdak.net>"]
description = "Fork of serde-hjson" description = "Fork of serde-hjson"
edition = "2018" edition = "2021"
license = "MIT" license = "MIT"
name = "nu-json" name = "nu-json"
version = "0.37.1" version = "0.37.1"

View File

@ -1,7 +1,7 @@
[package] [package]
name = "nu-parser" name = "nu-parser"
version = "0.1.0" version = "0.1.0"
edition = "2018" edition = "2021"
[dependencies] [dependencies]
miette = "3.0.0" miette = "3.0.0"

View File

@ -1,7 +1,7 @@
[package] [package]
authors = ["The Nu Project Contributors"] authors = ["The Nu Project Contributors"]
description = "Path handling library for Nushell" description = "Path handling library for Nushell"
edition = "2018" edition = "2021"
license = "MIT" license = "MIT"
name = "nu-path" name = "nu-path"
version = "0.37.1" version = "0.37.1"
@ -9,4 +9,3 @@ version = "0.37.1"
[dependencies] [dependencies]
dirs-next = "2.0.0" dirs-next = "2.0.0"
dunce = "1.0.1" dunce = "1.0.1"

View File

@ -1,7 +1,7 @@
[package] [package]
name = "nu-plugin" name = "nu-plugin"
version = "0.1.0" version = "0.1.0"
edition = "2018" edition = "2021"
[dependencies] [dependencies]
capnp = "0.14.3" capnp = "0.14.3"
@ -9,6 +9,3 @@ nu-protocol = { path = "../nu-protocol" }
nu-engine = { path = "../nu-engine" } nu-engine = { path = "../nu-engine" }
serde = {version = "1.0.130", features = ["derive"]} serde = {version = "1.0.130", features = ["derive"]}
serde_json = { version = "1.0"} serde_json = { version = "1.0"}

View File

@ -1,7 +1,7 @@
[package] [package]
authors = ["Andrei Volnin <wolandr@gmail.com>", "The Nu Project Contributors"] authors = ["Andrei Volnin <wolandr@gmail.com>", "The Nu Project Contributors"]
description = "Pretty hex dump of bytes slice in the common style." description = "Pretty hex dump of bytes slice in the common style."
edition = "2018" edition = "2021"
license = "MIT" license = "MIT"
name = "nu-pretty-hex" name = "nu-pretty-hex"
version = "0.41.0" version = "0.41.0"

View File

@ -1,7 +1,7 @@
[package] [package]
name = "nu-protocol" name = "nu-protocol"
version = "0.1.0" version = "0.1.0"
edition = "2018" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -1,7 +1,7 @@
[package] [package]
authors = ["The Nu Project Contributors"] authors = ["The Nu Project Contributors"]
description = "Nushell table printing" description = "Nushell table printing"
edition = "2018" edition = "2021"
license = "MIT" license = "MIT"
name = "nu-table" name = "nu-table"
version = "0.36.0" version = "0.36.0"

View File

@ -1,7 +1,7 @@
[package] [package]
authors = ["The Nu Project Contributors"] authors = ["The Nu Project Contributors"]
description = "Nushell grid printing" description = "Nushell grid printing"
edition = "2018" edition = "2021"
license = "MIT" license = "MIT"
name = "nu-term-grid" name = "nu-term-grid"
version = "0.36.0" version = "0.36.0"

View File

@ -1,7 +1,7 @@
[package] [package]
authors = ["The Nu Project Contributors"] authors = ["The Nu Project Contributors"]
description = "A version incrementer plugin for Nushell" description = "A version incrementer plugin for Nushell"
edition = "2018" edition = "2021"
license = "MIT" license = "MIT"
name = "nu_plugin_example" name = "nu_plugin_example"
version = "0.1.0" version = "0.1.0"

View File

@ -1,7 +1,7 @@
[package] [package]
authors = ["The Nu Project Contributors"] authors = ["The Nu Project Contributors"]
description = "A git status plugin for Nushell" description = "A git status plugin for Nushell"
edition = "2018" edition = "2021"
license = "MIT" license = "MIT"
name = "nu_plugin_gstat" name = "nu_plugin_gstat"
version = "0.1.0" version = "0.1.0"

View File

@ -1,7 +1,7 @@
[package] [package]
authors = ["The Nu Project Contributors"] authors = ["The Nu Project Contributors"]
description = "A version incrementer plugin for Nushell" description = "A version incrementer plugin for Nushell"
edition = "2018" edition = "2021"
license = "MIT" license = "MIT"
name = "nu_plugin_inc" name = "nu_plugin_inc"
version = "0.1.0" version = "0.1.0"