diff options
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | macros/Cargo.toml | 4 |
3 files changed, 6 insertions, 6 deletions
@@ -3,9 +3,9 @@ name = "syrette" version = "0.2.1" license = "MIT OR Apache-2.0" authors = ["HampusM <hampus@hampusmat.com>"] -description = "The convenient dependency injection library" +description = "The convenient dependency injection framework" repository = "https://git.hampusmat.com/syrette" -keywords = ["DI", "dependency-injection", "ioc", "inversion-of-control"] +keywords = ["di", "dependency-injection", "ioc", "inversion-of-control"] edition = "2021" [package.metadata.docs.rs] @@ -3,7 +3,7 @@ [![Documentation](https://img.shields.io/badge/docs.rs-syrette-brightgreen)](https://docs.rs/syrette) [![License](https://img.shields.io/crates/l/syrette)](https://git.hampusmat.com/syrette/tree/LICENSE) -The convenient dependency injection library for Rust. +The convenient dependency injection framework for Rust. ## Namesake From the [syrette Wikipedia article](https://en.wikipedia.org/wiki/Syrette). @@ -28,7 +28,7 @@ From the [syrette Wikipedia article](https://en.wikipedia.org/wiki/Syrette). To use these features, you must [enable it in Cargo](https://doc.rust-lang.org/cargo/reference/features.html#dependency-features). ## Motivation -Other DI libraries for Rust are either unmaintained ([di](https://crates.io/crates/di) for example), +Other DI/IOC libraries for Rust are either unmaintained ([di](https://crates.io/crates/di) for example), overcomplicated and or bloated ([anthill-di](https://crates.io/crates/anthill-di) for example) or has a weird API ([teloc](https://crates.io/crates/teloc) for example). diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 73f583d..cfb9afa 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -3,9 +3,9 @@ name = "syrette_macros" version = "0.2.1" license = "MIT OR Apache-2.0" authors = ["HampusM <hampus@hampusmat.com>"] -description = "Macros for Syrette, the convenient dependency injection library" +description = "Macros for Syrette, the convenient dependency injection framework" repository = "https://git.hampusmat.com/syrette" -keywords = ["DI", "dependency-injection", "ioc", "inversion-of-control"] +keywords = ["di", "dependency-injection", "ioc", "inversion-of-control"] edition = "2021" [lib] |