aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml4
-rw-r--r--README.md4
-rw-r--r--macros/Cargo.toml4
3 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.toml b/Cargo.toml
index b3b830b..f976264 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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]
diff --git a/README.md b/README.md
index 554f7d2..285ccba 100644
--- a/README.md
+++ b/README.md
@@ -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]