diff --git a/skootrs-bin/Cargo.toml b/skootrs-bin/Cargo.toml index 245043f..ac6af8e 100644 --- a/skootrs-bin/Cargo.toml +++ b/skootrs-bin/Cargo.toml @@ -2,6 +2,10 @@ name = "skootrs-bin" version = "0.1.0" edition = "2021" +description = "This module is for the Skootrs CLI tool binary and helper functions." +license = "Apache-2.0" +repository = "https://github.com/kusaridev/skootrs" + [[bin]] name = "skootrs" diff --git a/skootrs-bin/README.md b/skootrs-bin/README.md new file mode 100644 index 0000000..ef97eae --- /dev/null +++ b/skootrs-bin/README.md @@ -0,0 +1,3 @@ +# Skootrs-bin + +This module is for the Skootrs CLI tool binary and helper functions. \ No newline at end of file diff --git a/skootrs-lib/Cargo.toml b/skootrs-lib/Cargo.toml index 0c702b4..22be93a 100644 --- a/skootrs-lib/Cargo.toml +++ b/skootrs-lib/Cargo.toml @@ -2,6 +2,9 @@ name = "skootrs-lib" version = "0.1.0" edition = "2021" +description = "This module contains most of the core functionality for Skootrs. It contains the code to interact with repo hosts, generate files, manage projects, etc." +license = "Apache-2.0" +repository = "https://github.com/kusaridev/skootrs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/skootrs-lib/README.md b/skootrs-lib/README.md new file mode 100644 index 0000000..ee23790 --- /dev/null +++ b/skootrs-lib/README.md @@ -0,0 +1,3 @@ +# Skootrs-lib + +This module contains most of the core functionality for Skootrs. It contains the code to interact with repo hosts, generate files, manage projects, etc. \ No newline at end of file diff --git a/skootrs-model/Cargo.toml b/skootrs-model/Cargo.toml index 73b7171..02c90a6 100644 --- a/skootrs-model/Cargo.toml +++ b/skootrs-model/Cargo.toml @@ -2,6 +2,9 @@ name = "skootrs-model" version = "0.1.0" edition = "2021" +description = "This module contains the various data structures used by the other Skootrs modules. This is also setup to make it easy to generate schemas from this code for the purposes of easily implementing Skootrs API compliant clients in other languages and systems." +license = "Apache-2.0" +repository = "https://github.com/kusaridev/skootrs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/skootrs-model/README.md b/skootrs-model/README.md new file mode 100644 index 0000000..b078ee0 --- /dev/null +++ b/skootrs-model/README.md @@ -0,0 +1,5 @@ +# Skootrs-model + +This module contains the various data structures used by the other Skootrs modules. This is also setup to make it easy to generate schemas from this code for the purposes of easily implementing Skootrs API compliant clients in other languages and systems. + +Over time this will probably transform into more of an SDK. \ No newline at end of file diff --git a/skootrs-rest/Cargo.toml b/skootrs-rest/Cargo.toml index 6215900..7a0578a 100644 --- a/skootrs-rest/Cargo.toml +++ b/skootrs-rest/Cargo.toml @@ -2,6 +2,9 @@ name = "skootrs-rest" version = "0.1.0" edition = "2021" +license = "Apache-2.0" +description = "This is an experimental module is for a REST API for Skootrs." +repository = "https://github.com/kusaridev/skootrs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/skootrs-rest/README.md b/skootrs-rest/README.md new file mode 100644 index 0000000..85a18f2 --- /dev/null +++ b/skootrs-rest/README.md @@ -0,0 +1,3 @@ +# Skootrs-rest + +This is an experimental module is for a REST API that is a Skootrs implementation. Over time this will evolve into the main mechanism for handling Skootrs project management and the CLI will just connect to a local running service running the API. \ No newline at end of file diff --git a/skootrs-statestore/Cargo.toml b/skootrs-statestore/Cargo.toml index deb2b19..d7c4e41 100644 --- a/skootrs-statestore/Cargo.toml +++ b/skootrs-statestore/Cargo.toml @@ -2,6 +2,9 @@ name = "skootrs-statestore" version = "0.1.0" edition = "2021" +license = "Apache-2.0" +description = "This module contains code for managing the state of Skootrs projects as well as the state across all known Skootrs project for a particular installation of Skootrs." +repository = "https://github.com/kusaridev/skootrs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/skootrs-statestore/README.md b/skootrs-statestore/README.md new file mode 100644 index 0000000..1abd323 --- /dev/null +++ b/skootrs-statestore/README.md @@ -0,0 +1,3 @@ +# Skootrs-statestore + +This module contains code for managing the state of Skootrs projects as well as the state across all known Skootrs project for a particular installation of Skootrs. \ No newline at end of file