diff --git a/crates/nu-cli/Cargo.toml b/crates/nu-cli/Cargo.toml index 8d08c95e5..3e879d667 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["The Nushell Project Developers"] description = "CLI-related functionality for Nushell" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cli" edition = "2021" license = "MIT" name = "nu-cli" diff --git a/crates/nu-color-config/Cargo.toml b/crates/nu-color-config/Cargo.toml index 700c6e7c2..b4fc16be9 100644 --- a/crates/nu-color-config/Cargo.toml +++ b/crates/nu-color-config/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["The Nushell Project Developers"] description = "Color configuration code used by Nushell" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu-color-config" edition = "2021" license = "MIT" name = "nu-color-config" diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index 41eaab670..e26890bee 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["The Nushell Project Developers"] description = "Nushell's built-in commands" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu-command" edition = "2021" license = "MIT" name = "nu-command" diff --git a/crates/nu-engine/Cargo.toml b/crates/nu-engine/Cargo.toml index 5abbec6fc..0851f2f38 100644 --- a/crates/nu-engine/Cargo.toml +++ b/crates/nu-engine/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["The Nushell Project Developers"] description = "Nushell's evaluation engine" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu-engine" edition = "2021" license = "MIT" name = "nu-engine" diff --git a/crates/nu-glob/Cargo.toml b/crates/nu-glob/Cargo.toml index dadba1854..77b1b1797 100644 --- a/crates/nu-glob/Cargo.toml +++ b/crates/nu-glob/Cargo.toml @@ -6,6 +6,7 @@ license = "MIT/Apache-2.0" description = """ Fork of glob. Support for matching file paths against Unix shell style patterns. """ +repository = "https://github.com/nushell/nushell/tree/main/crates/nu-glob" edition = "2021" categories = ["filesystem"] diff --git a/crates/nu-json/Cargo.toml b/crates/nu-json/Cargo.toml index f2e07b239..d70743964 100644 --- a/crates/nu-json/Cargo.toml +++ b/crates/nu-json/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["The Nushell Project Developers", "Christian Zangl "] description = "Fork of serde-hjson" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu-json" edition = "2021" license = "MIT" name = "nu-json" diff --git a/crates/nu-parser/Cargo.toml b/crates/nu-parser/Cargo.toml index 3a8fb8e6e..99bde6cdb 100644 --- a/crates/nu-parser/Cargo.toml +++ b/crates/nu-parser/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["The Nushell Project Developers"] description = "Nushell's parser" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu-parser" edition = "2021" license = "MIT" name = "nu-parser" diff --git a/crates/nu-path/Cargo.toml b/crates/nu-path/Cargo.toml index 9d94b78a0..bad52ed8b 100644 --- a/crates/nu-path/Cargo.toml +++ b/crates/nu-path/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["The Nushell Project Developers"] description = "Path handling library for Nushell" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu-path" edition = "2021" license = "MIT" name = "nu-path" diff --git a/crates/nu-plugin/Cargo.toml b/crates/nu-plugin/Cargo.toml index 890f6c340..2df51354d 100644 --- a/crates/nu-plugin/Cargo.toml +++ b/crates/nu-plugin/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["The Nushell Project Developers"] description = "Functionality for building Nushell plugins" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu-plugin" edition = "2021" license = "MIT" name = "nu-plugin" diff --git a/crates/nu-pretty-hex/Cargo.toml b/crates/nu-pretty-hex/Cargo.toml index d058c48f2..274a038bf 100644 --- a/crates/nu-pretty-hex/Cargo.toml +++ b/crates/nu-pretty-hex/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["Andrei Volnin ", "The Nushell Project Developers"] description = "Pretty hex dump of bytes slice in the common style." +repository = "https://github.com/nushell/nushell/tree/main/crates/nu-pretty-hex" edition = "2021" license = "MIT" name = "nu-pretty-hex" diff --git a/crates/nu-protocol/Cargo.toml b/crates/nu-protocol/Cargo.toml index 3309d9b0d..d1cc2fec1 100644 --- a/crates/nu-protocol/Cargo.toml +++ b/crates/nu-protocol/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["The Nushell Project Developers"] description = "Nushell's internal protocols, including its abstract syntax tree" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu-protocol" edition = "2021" license = "MIT" name = "nu-protocol" diff --git a/crates/nu-system/Cargo.toml b/crates/nu-system/Cargo.toml index ad0a795b8..ac15eea5b 100644 --- a/crates/nu-system/Cargo.toml +++ b/crates/nu-system/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["The Nushell Project Developers", "procs creators"] description = "Nushell system querying" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu-system" name = "nu-system" version = "0.66.4" edition = "2021" diff --git a/crates/nu-table/Cargo.toml b/crates/nu-table/Cargo.toml index 01d755a8e..fb181adb9 100644 --- a/crates/nu-table/Cargo.toml +++ b/crates/nu-table/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["The Nushell Project Developers"] description = "Nushell table printing" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu-table" edition = "2021" license = "MIT" name = "nu-table" diff --git a/crates/nu-term-grid/Cargo.toml b/crates/nu-term-grid/Cargo.toml index 49e25c4c4..0687151e2 100644 --- a/crates/nu-term-grid/Cargo.toml +++ b/crates/nu-term-grid/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["The Nushell Project Developers"] description = "Nushell grid printing" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu-term-grid" edition = "2021" license = "MIT" name = "nu-term-grid" diff --git a/crates/nu-test-support/Cargo.toml b/crates/nu-test-support/Cargo.toml index ffad69f5e..e78306e2a 100644 --- a/crates/nu-test-support/Cargo.toml +++ b/crates/nu-test-support/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["The Nushell Project Developers"] description = "Support for writing Nushell tests" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu-test-support" edition = "2018" license = "MIT" name = "nu-test-support" diff --git a/crates/nu-utils/Cargo.toml b/crates/nu-utils/Cargo.toml index f469e6ffc..4ad6e6fe5 100644 --- a/crates/nu-utils/Cargo.toml +++ b/crates/nu-utils/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["The Nushell Project Developers"] description = "Nushell utility functions" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu-utils" edition = "2021" license = "MIT" name = "nu-utils" diff --git a/crates/nu_plugin_custom_values/Cargo.toml b/crates/nu_plugin_custom_values/Cargo.toml index 79ac4caed..3c2dfd67e 100644 --- a/crates/nu_plugin_custom_values/Cargo.toml +++ b/crates/nu_plugin_custom_values/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "nu_plugin_custom_values" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_custom_values" version = "0.1.0" edition = "2021" diff --git a/crates/nu_plugin_example/Cargo.toml b/crates/nu_plugin_example/Cargo.toml index d0c2e769a..d86fc97be 100644 --- a/crates/nu_plugin_example/Cargo.toml +++ b/crates/nu_plugin_example/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["The Nushell Project Developers"] description = "A version incrementer plugin for Nushell" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_example" edition = "2021" license = "MIT" name = "nu_plugin_example" diff --git a/crates/nu_plugin_gstat/Cargo.toml b/crates/nu_plugin_gstat/Cargo.toml index bae50dcc9..12ac22a60 100644 --- a/crates/nu_plugin_gstat/Cargo.toml +++ b/crates/nu_plugin_gstat/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["The Nushell Project Developers"] description = "A git status plugin for Nushell" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_gstat" edition = "2021" license = "MIT" name = "nu_plugin_gstat" diff --git a/crates/nu_plugin_inc/Cargo.toml b/crates/nu_plugin_inc/Cargo.toml index 1f099de97..95950dd43 100644 --- a/crates/nu_plugin_inc/Cargo.toml +++ b/crates/nu_plugin_inc/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["The Nushell Project Developers"] description = "A version incrementer plugin for Nushell" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_inc" edition = "2021" license = "MIT" name = "nu_plugin_inc" diff --git a/crates/nu_plugin_query/Cargo.toml b/crates/nu_plugin_query/Cargo.toml index 06e1aa332..1cc7d761e 100644 --- a/crates/nu_plugin_query/Cargo.toml +++ b/crates/nu_plugin_query/Cargo.toml @@ -1,6 +1,7 @@ [package] authors = ["The Nushell Project Developers"] description = "A Nushell plugin to query JSON, XML, and various web data" +repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_query" edition = "2021" license = "MIT" name = "nu_plugin_query"