diff options
| author | Fuwn <[email protected]> | 2021-05-23 16:33:22 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-23 16:33:22 +0000 |
| commit | cab551696d0330ae9df87ad426d68ea992b81f6b (patch) | |
| tree | 873df71d797f70e7df313b6a4432a7cb8fcfca6c | |
| parent | docs(crates): update readme (diff) | |
| download | whirl-cab551696d0330ae9df87ad426d68ea992b81f6b.tar.xz whirl-cab551696d0330ae9df87ad426d68ea992b81f6b.zip | |
docs(crates): modify crate descriptions to fit their tasks
| -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 |
6 files changed, 6 insertions, 6 deletions
diff --git a/crates/whirl_api/Cargo.toml b/crates/whirl_api/Cargo.toml index 7687b42..99c6f19 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 = "Whirl, an open-source WorldServer implementation in Rust." +description = "The API, for external 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 aea1c8f..7f48d6e 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 = "Whirl, an open-source WorldServer implementation in Rust." +description = "Assorted utilites, 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 64100d1..d613d6d 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 = "Whirl, an open-source WorldServer implementation in Rust." +description = "Configuration utilities, 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 0e9bdf0..cf871f2 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 = "Whirl, an open-source WorldServer implementation in Rust." +description = "Database utilities, to interact with the database." 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 00abbcf..4805f53 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 = "Whirl, an open-source WorldServer implementation in Rust." +description = "The Whirl Shell, 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 be88f2f..a657276 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 = "Whirl, an open-source WorldServer implementation in Rust." +description = "Exposes the Distributor and Hub for further use." documentation = "https://whirlsplash.org/docs/" readme = "../../README.rst" homepage = "https://whirlsplash.org" |