diff options
| author | Fuwn <[email protected]> | 2021-06-07 01:55:18 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-06-07 01:55:18 +0000 |
| commit | 5da7886b3240fbffc923e92bba2e8a0e5812a6a8 (patch) | |
| tree | 94dc57e6ac22b55cea9aa3ee21bf4b795e2f3b5d | |
| parent | docs(whirl_api): document public functions (diff) | |
| download | whirl-5da7886b3240fbffc923e92bba2e8a0e5812a6a8.tar.xz whirl-5da7886b3240fbffc923e92bba2e8a0e5812a6a8.zip | |
refactor(global): update crate descriptions
| -rw-r--r-- | crates/README.rst | 14 | ||||
| -rw-r--r-- | crates/whirl/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/whirl_api/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/whirl_common/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/whirl_config/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/whirl_db/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/whirl_prompt/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/whirl_server/Cargo.toml | 2 |
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 8d2dee2..5abb1b5 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 ba7f108..c4de5b6 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 e0e704c..6d89283 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 d613d6d..30e917b 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 cf871f2..d28a822 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 9e5586b..77f801d 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 1697faf..bcf5daf 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" |