aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-06-07 01:55:18 -0700
committerFuwn <[email protected]>2021-06-07 01:55:18 -0700
commitddb8c6afd4bf38b454f48d091fe0c025fe328048 (patch)
tree7dc2fc2b7dd31ded08a85731485986dff66301fa
parentdocs(whirl_api): document public functions (diff)
downloadwhirl-ddb8c6afd4bf38b454f48d091fe0c025fe328048.tar.xz
whirl-ddb8c6afd4bf38b454f48d091fe0c025fe328048.zip
refactor(global): update crate descriptions
-rw-r--r--crates/README.rst14
-rw-r--r--crates/whirl/Cargo.toml2
-rw-r--r--crates/whirl_api/Cargo.toml2
-rw-r--r--crates/whirl_common/Cargo.toml2
-rw-r--r--crates/whirl_config/Cargo.toml2
-rw-r--r--crates/whirl_db/Cargo.toml2
-rw-r--r--crates/whirl_prompt/Cargo.toml2
-rw-r--r--crates/whirl_server/Cargo.toml2
8 files changed, 14 insertions, 14 deletions
diff --git a/crates/README.rst b/crates/README.rst
index a2e262c..ba5966c 100644
--- a/crates/README.rst
+++ b/crates/README.rst
@@ -9,25 +9,25 @@
- Description
- Version
* - :code:`whirl`
- - The CLI, links everything together.
+ - Links everything together in a neat, little CLI.
- :code:`0.1.0`
* - :code:`whirl_api`
- - The API, for external interaction.
+ - Enables for remote interaction.
- :code:`0.1.0`
* - :code:`whirl_common`
- - Assorted utilities, for global use.
+ - Provides assorted utilities for global use.
- :code:`0.1.0`
* - :code:`whirl_config`
- - Configuration utilities, to interact with the configuration system.
+ - Provides abstractions to interact with the configuration system.
- :code:`0.1.0`
* - :code:`whirl_db`
- - Database utilities, to interact with the database.
+ - Provides abstractions to interact with the database layer.
- :code:`0.1.0`
* - :code:`whirl_prompt`
- - The Whirl Shell, for local interaction.
+ - Enables for local interaction.
- :code:`0.1.0`
* - :code:`whirl_server`
- - The meat and potatoes, exposes the Distributor and Hub for further use.
+ - The meat and potatoes; instantiates the sub-servers which a WorldServer *should* accommodate.
- :code:`0.1.0`
Graph
diff --git a/crates/whirl/Cargo.toml b/crates/whirl/Cargo.toml
index fb042e8..7773afc 100644
--- a/crates/whirl/Cargo.toml
+++ b/crates/whirl/Cargo.toml
@@ -3,7 +3,7 @@ name = "whirl"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2018"
-description = "Whirl, an open-source WorldServer implementation in Rust."
+description = "The Open-Source WorldServer."
documentation = "https://whirlsplash.org/docs/"
readme = "../../README.rst"
homepage = "https://whirlsplash.org"
diff --git a/crates/whirl_api/Cargo.toml b/crates/whirl_api/Cargo.toml
index 8749f39..67feb77 100644
--- a/crates/whirl_api/Cargo.toml
+++ b/crates/whirl_api/Cargo.toml
@@ -3,7 +3,7 @@ name = "whirl_api"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2018"
-description = "The API, for external interaction."
+description = "Enables for remote interaction."
documentation = "https://whirlsplash.org/docs/"
readme = "../../README.rst"
homepage = "https://whirlsplash.org"
diff --git a/crates/whirl_common/Cargo.toml b/crates/whirl_common/Cargo.toml
index efc6047..db737ea 100644
--- a/crates/whirl_common/Cargo.toml
+++ b/crates/whirl_common/Cargo.toml
@@ -3,7 +3,7 @@ name = "whirl_common"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2018"
-description = "Assorted utilities, for global use."
+description = "Provides assorted utilities for global use."
documentation = "https://whirlsplash.org/docs/"
readme = "../../README.rst"
homepage = "https://whirlsplash.org"
diff --git a/crates/whirl_config/Cargo.toml b/crates/whirl_config/Cargo.toml
index 53efe2d..3a58e02 100644
--- a/crates/whirl_config/Cargo.toml
+++ b/crates/whirl_config/Cargo.toml
@@ -3,7 +3,7 @@ name = "whirl_config"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2018"
-description = "Configuration utilities, to interact with the configuration system."
+description = "Provides abstractions to interact with the configuration system."
documentation = "https://whirlsplash.org/docs/"
readme = "../../README.rst"
homepage = "https://whirlsplash.org"
diff --git a/crates/whirl_db/Cargo.toml b/crates/whirl_db/Cargo.toml
index ce31076..98567d6 100644
--- a/crates/whirl_db/Cargo.toml
+++ b/crates/whirl_db/Cargo.toml
@@ -3,7 +3,7 @@ name = "whirl_db"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2018"
-description = "Database utilities, to interact with the database."
+description = "Provides abstractions to interact with the database layer."
documentation = "https://whirlsplash.org/docs/"
readme = "../../README.rst"
homepage = "https://whirlsplash.org"
diff --git a/crates/whirl_prompt/Cargo.toml b/crates/whirl_prompt/Cargo.toml
index 5543c24..ea53e89 100644
--- a/crates/whirl_prompt/Cargo.toml
+++ b/crates/whirl_prompt/Cargo.toml
@@ -3,7 +3,7 @@ name = "whirl_prompt"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2018"
-description = "The Whirl Shell, for local interaction."
+description = "Enables for local interaction."
documentation = "https://whirlsplash.org/docs/"
readme = "../../README.rst"
homepage = "https://whirlsplash.org"
diff --git a/crates/whirl_server/Cargo.toml b/crates/whirl_server/Cargo.toml
index 1e8f5f7..3e842a2 100644
--- a/crates/whirl_server/Cargo.toml
+++ b/crates/whirl_server/Cargo.toml
@@ -3,7 +3,7 @@ name = "whirl_server"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2018"
-description = "Exposes the Distributor and Hub for further use."
+description = "Instantiates the sub-servers which a WorldServer *should* accommodate."
documentation = "https://whirlsplash.org/docs/"
readme = "../../README.rst"
homepage = "https://whirlsplash.org"