From e0b9ceb86df9eb978bccd7baa151724b3f778aff Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Sun, 12 May 2024 14:32:39 +0200 Subject: [PATCH] Add missing repository and description fields to all manifests --- crates/lune-roblox/Cargo.toml | 2 ++ crates/lune-std-datetime/Cargo.toml | 2 ++ crates/lune-std-fs/Cargo.toml | 2 ++ crates/lune-std-luau/Cargo.toml | 2 ++ crates/lune-std-net/Cargo.toml | 2 ++ crates/lune-std-process/Cargo.toml | 2 ++ crates/lune-std-regex/Cargo.toml | 2 ++ crates/lune-std-roblox/Cargo.toml | 2 ++ crates/lune-std-serde/Cargo.toml | 2 ++ crates/lune-std-stdio/Cargo.toml | 2 ++ crates/lune-std-task/Cargo.toml | 2 ++ crates/lune-std/Cargo.toml | 2 ++ crates/lune-utils/Cargo.toml | 2 ++ 13 files changed, 26 insertions(+) diff --git a/crates/lune-roblox/Cargo.toml b/crates/lune-roblox/Cargo.toml index 88eb441..b20bd50 100644 --- a/crates/lune-roblox/Cargo.toml +++ b/crates/lune-roblox/Cargo.toml @@ -3,6 +3,8 @@ name = "lune-roblox" version = "0.1.0" edition = "2021" license = "MPL-2.0" +repository = "https://github.com/lune-org/lune" +description = "Roblox library for Lune" [lib] path = "src/lib.rs" diff --git a/crates/lune-std-datetime/Cargo.toml b/crates/lune-std-datetime/Cargo.toml index 34bef78..6cb5499 100644 --- a/crates/lune-std-datetime/Cargo.toml +++ b/crates/lune-std-datetime/Cargo.toml @@ -3,6 +3,8 @@ name = "lune-std-datetime" version = "0.1.0" edition = "2021" license = "MPL-2.0" +repository = "https://github.com/lune-org/lune" +description = "Lune standard library - DateTime" [lib] path = "src/lib.rs" diff --git a/crates/lune-std-fs/Cargo.toml b/crates/lune-std-fs/Cargo.toml index a3bc219..033e60d 100644 --- a/crates/lune-std-fs/Cargo.toml +++ b/crates/lune-std-fs/Cargo.toml @@ -3,6 +3,8 @@ name = "lune-std-fs" version = "0.1.0" edition = "2021" license = "MPL-2.0" +repository = "https://github.com/lune-org/lune" +description = "Lune standard library - FS" [lib] path = "src/lib.rs" diff --git a/crates/lune-std-luau/Cargo.toml b/crates/lune-std-luau/Cargo.toml index d01584c..a4d1b23 100644 --- a/crates/lune-std-luau/Cargo.toml +++ b/crates/lune-std-luau/Cargo.toml @@ -3,6 +3,8 @@ name = "lune-std-luau" version = "0.1.0" edition = "2021" license = "MPL-2.0" +repository = "https://github.com/lune-org/lune" +description = "Lune standard library - Luau" [lib] path = "src/lib.rs" diff --git a/crates/lune-std-net/Cargo.toml b/crates/lune-std-net/Cargo.toml index 966e374..2cf086e 100644 --- a/crates/lune-std-net/Cargo.toml +++ b/crates/lune-std-net/Cargo.toml @@ -3,6 +3,8 @@ name = "lune-std-net" version = "0.1.0" edition = "2021" license = "MPL-2.0" +repository = "https://github.com/lune-org/lune" +description = "Lune standard library - Net" [lib] path = "src/lib.rs" diff --git a/crates/lune-std-process/Cargo.toml b/crates/lune-std-process/Cargo.toml index 211d875..42d720b 100644 --- a/crates/lune-std-process/Cargo.toml +++ b/crates/lune-std-process/Cargo.toml @@ -3,6 +3,8 @@ name = "lune-std-process" version = "0.1.0" edition = "2021" license = "MPL-2.0" +repository = "https://github.com/lune-org/lune" +description = "Lune standard library - Process" [lib] path = "src/lib.rs" diff --git a/crates/lune-std-regex/Cargo.toml b/crates/lune-std-regex/Cargo.toml index a7dc859..5bebcb5 100644 --- a/crates/lune-std-regex/Cargo.toml +++ b/crates/lune-std-regex/Cargo.toml @@ -3,6 +3,8 @@ name = "lune-std-regex" version = "0.1.0" edition = "2021" license = "MPL-2.0" +repository = "https://github.com/lune-org/lune" +description = "Lune standard library - RegEx" [lib] path = "src/lib.rs" diff --git a/crates/lune-std-roblox/Cargo.toml b/crates/lune-std-roblox/Cargo.toml index af051c7..269aad9 100644 --- a/crates/lune-std-roblox/Cargo.toml +++ b/crates/lune-std-roblox/Cargo.toml @@ -3,6 +3,8 @@ name = "lune-std-roblox" version = "0.1.0" edition = "2021" license = "MPL-2.0" +repository = "https://github.com/lune-org/lune" +description = "Lune standard library - Roblox" [lib] path = "src/lib.rs" diff --git a/crates/lune-std-serde/Cargo.toml b/crates/lune-std-serde/Cargo.toml index 4f8faef..fdc92f4 100644 --- a/crates/lune-std-serde/Cargo.toml +++ b/crates/lune-std-serde/Cargo.toml @@ -3,6 +3,8 @@ name = "lune-std-serde" version = "0.1.0" edition = "2021" license = "MPL-2.0" +repository = "https://github.com/lune-org/lune" +description = "Lune standard library - Serde" [lib] path = "src/lib.rs" diff --git a/crates/lune-std-stdio/Cargo.toml b/crates/lune-std-stdio/Cargo.toml index 464f5d9..7d3909e 100644 --- a/crates/lune-std-stdio/Cargo.toml +++ b/crates/lune-std-stdio/Cargo.toml @@ -3,6 +3,8 @@ name = "lune-std-stdio" version = "0.1.0" edition = "2021" license = "MPL-2.0" +repository = "https://github.com/lune-org/lune" +description = "Lune standard library - Stdio" [lib] path = "src/lib.rs" diff --git a/crates/lune-std-task/Cargo.toml b/crates/lune-std-task/Cargo.toml index 4df2d8a..edc6e5a 100644 --- a/crates/lune-std-task/Cargo.toml +++ b/crates/lune-std-task/Cargo.toml @@ -3,6 +3,8 @@ name = "lune-std-task" version = "0.1.0" edition = "2021" license = "MPL-2.0" +repository = "https://github.com/lune-org/lune" +description = "Lune standard library - Task" [lib] path = "src/lib.rs" diff --git a/crates/lune-std/Cargo.toml b/crates/lune-std/Cargo.toml index 3ee4c9a..ed8416d 100644 --- a/crates/lune-std/Cargo.toml +++ b/crates/lune-std/Cargo.toml @@ -3,6 +3,8 @@ name = "lune-std" version = "0.1.0" edition = "2021" license = "MPL-2.0" +repository = "https://github.com/lune-org/lune" +description = "Lune standard library" [lib] path = "src/lib.rs" diff --git a/crates/lune-utils/Cargo.toml b/crates/lune-utils/Cargo.toml index dd39731..f07b737 100644 --- a/crates/lune-utils/Cargo.toml +++ b/crates/lune-utils/Cargo.toml @@ -3,6 +3,8 @@ name = "lune-utils" version = "0.1.0" edition = "2021" license = "MPL-2.0" +repository = "https://github.com/lune-org/lune" +description = "Utilities library for Lune" [lib] path = "src/lib.rs"