diff options
| author | Fuwn <[email protected]> | 2022-02-16 00:03:51 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-06-09 00:46:08 -0700 |
| commit | 7d4ad4f0b9afb59ac5b2d3d030f6c4e1dec9bc6c (patch) | |
| tree | 7d72a65144c8668e0b2455fde0a9698b16c645f1 | |
| parent | doc(divina_util): more macro documentation (diff) | |
| download | archived-divina-7d4ad4f0b9afb59ac5b2d3d030f6c4e1dec9bc6c.tar.xz archived-divina-7d4ad4f0b9afb59ac5b2d3d030f6c4e1dec9bc6c.zip | |
fix: manifest information
| -rw-r--r-- | crates/divina/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/divina_compile/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/divina_config/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/divina_git/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/divina_util/Cargo.toml | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/crates/divina/Cargo.toml b/crates/divina/Cargo.toml index 17019be..3c3019f 100644 --- a/crates/divina/Cargo.toml +++ b/crates/divina/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" authors = ["Fuwn <[email protected]>"] edition = "2021" description = "A modern build system for assembly" -readme = "README.rst" +readme = "../../README.rst" homepage = "https://divina.land" repository = "https://github.com/divinaland/Divina" license = "GPL-3.0-only" diff --git a/crates/divina_compile/Cargo.toml b/crates/divina_compile/Cargo.toml index f46d27d..ecd68a8 100644 --- a/crates/divina_compile/Cargo.toml +++ b/crates/divina_compile/Cargo.toml @@ -4,12 +4,12 @@ version = "0.1.0" authors = ["Fuwn <[email protected]>"] edition = "2021" description = "Divina's compiler wrapper" -readme = "README.rst" +readme = "../../README.rst" homepage = "https://divina.land" repository = "https://github.com/divinaland/Divina" license = "GPL-3.0-only" keywords = ["divina", "buildsystem", "build", "assembly", "asm", "nasm", "yasm"] -categories = ["development-tools::build-utils"] +categories = ["development-tools::build-utils", "development-tools"] publish = false [dependencies] diff --git a/crates/divina_config/Cargo.toml b/crates/divina_config/Cargo.toml index 234ea42..c867994 100644 --- a/crates/divina_config/Cargo.toml +++ b/crates/divina_config/Cargo.toml @@ -4,12 +4,12 @@ version = "0.1.0" authors = ["Fuwn <[email protected]>"] edition = "2021" description = "Divina's configuration system" -readme = "README.rst" +readme = "../../README.rst" homepage = "https://divina.land" repository = "https://github.com/divinaland/Divina" license = "GPL-3.0-only" keywords = ["divina", "buildsystem", "build", "assembly", "asm", "nasm", "yasm"] -categories = ["development-tools::build-utils"] +categories = ["config"] publish = false [dependencies] diff --git a/crates/divina_git/Cargo.toml b/crates/divina_git/Cargo.toml index 3f38318..545ef4e 100644 --- a/crates/divina_git/Cargo.toml +++ b/crates/divina_git/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://divina.land" repository = "https://github.com/divinaland/Divina" license = "GPL-3.0-only" keywords = ["divina", "buildsystem", "build", "assembly", "asm", "nasm", "yasm"] -categories = ["development-tools::build-utils"] +categories = ["command-line-utilites", "development-tools"] publish = false [dependencies] diff --git a/crates/divina_util/Cargo.toml b/crates/divina_util/Cargo.toml index f07edb3..88bed22 100644 --- a/crates/divina_util/Cargo.toml +++ b/crates/divina_util/Cargo.toml @@ -9,5 +9,5 @@ homepage = "https://divina.land" repository = "https://github.com/divinaland/Divina" license = "GPL-3.0-only" keywords = ["divina", "buildsystem", "build", "assembly", "asm", "nasm", "yasm"] -categories = ["development-tools::build-utils"] +categories = ["development-tools"] publish = false |