Add repository info to all workspace crates (#6320)

This helps people who find these crates on crates.io
This commit is contained in:
Richard Braakman 2022-08-14 15:21:20 +03:00 committed by GitHub
parent 9d8d305e9d
commit 6145f734b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
21 changed files with 21 additions and 0 deletions

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["The Nushell Project Developers"] authors = ["The Nushell Project Developers"]
description = "CLI-related functionality for Nushell" description = "CLI-related functionality for Nushell"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cli"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
name = "nu-cli" name = "nu-cli"

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["The Nushell Project Developers"] authors = ["The Nushell Project Developers"]
description = "Color configuration code used by Nushell" description = "Color configuration code used by Nushell"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-color-config"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
name = "nu-color-config" name = "nu-color-config"

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["The Nushell Project Developers"] authors = ["The Nushell Project Developers"]
description = "Nushell's built-in commands" description = "Nushell's built-in commands"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-command"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
name = "nu-command" name = "nu-command"

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["The Nushell Project Developers"] authors = ["The Nushell Project Developers"]
description = "Nushell's evaluation engine" description = "Nushell's evaluation engine"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-engine"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
name = "nu-engine" name = "nu-engine"

View File

@ -6,6 +6,7 @@ license = "MIT/Apache-2.0"
description = """ description = """
Fork of glob. Support for matching file paths against Unix shell style patterns. 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" edition = "2021"
categories = ["filesystem"] categories = ["filesystem"]

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["The Nushell Project Developers", "Christian Zangl <laktak@cdak.net>"] authors = ["The Nushell Project Developers", "Christian Zangl <laktak@cdak.net>"]
description = "Fork of serde-hjson" description = "Fork of serde-hjson"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-json"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
name = "nu-json" name = "nu-json"

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["The Nushell Project Developers"] authors = ["The Nushell Project Developers"]
description = "Nushell's parser" description = "Nushell's parser"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-parser"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
name = "nu-parser" name = "nu-parser"

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["The Nushell Project Developers"] authors = ["The Nushell Project Developers"]
description = "Path handling library for Nushell" description = "Path handling library for Nushell"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-path"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
name = "nu-path" name = "nu-path"

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["The Nushell Project Developers"] authors = ["The Nushell Project Developers"]
description = "Functionality for building Nushell plugins" description = "Functionality for building Nushell plugins"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-plugin"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
name = "nu-plugin" name = "nu-plugin"

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["Andrei Volnin <wolandr@gmail.com>", "The Nushell Project Developers"] authors = ["Andrei Volnin <wolandr@gmail.com>", "The Nushell Project Developers"]
description = "Pretty hex dump of bytes slice in the common style." 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" edition = "2021"
license = "MIT" license = "MIT"
name = "nu-pretty-hex" name = "nu-pretty-hex"

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["The Nushell Project Developers"] authors = ["The Nushell Project Developers"]
description = "Nushell's internal protocols, including its abstract syntax tree" description = "Nushell's internal protocols, including its abstract syntax tree"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-protocol"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
name = "nu-protocol" name = "nu-protocol"

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["The Nushell Project Developers", "procs creators"] authors = ["The Nushell Project Developers", "procs creators"]
description = "Nushell system querying" description = "Nushell system querying"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-system"
name = "nu-system" name = "nu-system"
version = "0.66.4" version = "0.66.4"
edition = "2021" edition = "2021"

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["The Nushell Project Developers"] authors = ["The Nushell Project Developers"]
description = "Nushell table printing" description = "Nushell table printing"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-table"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
name = "nu-table" name = "nu-table"

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["The Nushell Project Developers"] authors = ["The Nushell Project Developers"]
description = "Nushell grid printing" description = "Nushell grid printing"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-term-grid"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
name = "nu-term-grid" name = "nu-term-grid"

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["The Nushell Project Developers"] authors = ["The Nushell Project Developers"]
description = "Support for writing Nushell tests" description = "Support for writing Nushell tests"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-test-support"
edition = "2018" edition = "2018"
license = "MIT" license = "MIT"
name = "nu-test-support" name = "nu-test-support"

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["The Nushell Project Developers"] authors = ["The Nushell Project Developers"]
description = "Nushell utility functions" description = "Nushell utility functions"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-utils"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
name = "nu-utils" name = "nu-utils"

View File

@ -1,5 +1,6 @@
[package] [package]
name = "nu_plugin_custom_values" name = "nu_plugin_custom_values"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_custom_values"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["The Nushell Project Developers"] authors = ["The Nushell Project Developers"]
description = "A version incrementer plugin for Nushell" description = "A version incrementer plugin for Nushell"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_example"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
name = "nu_plugin_example" name = "nu_plugin_example"

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["The Nushell Project Developers"] authors = ["The Nushell Project Developers"]
description = "A git status plugin for Nushell" description = "A git status plugin for Nushell"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_gstat"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
name = "nu_plugin_gstat" name = "nu_plugin_gstat"

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["The Nushell Project Developers"] authors = ["The Nushell Project Developers"]
description = "A version incrementer plugin for Nushell" description = "A version incrementer plugin for Nushell"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu_plugin_inc"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
name = "nu_plugin_inc" name = "nu_plugin_inc"

View File

@ -1,6 +1,7 @@
[package] [package]
authors = ["The Nushell Project Developers"] authors = ["The Nushell Project Developers"]
description = "A Nushell plugin to query JSON, XML, and various web data" 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" edition = "2021"
license = "MIT" license = "MIT"
name = "nu_plugin_query" name = "nu_plugin_query"