Dependency Injection in Rust
This crate provides integration support between coi
and actix-web
.
In your Cargo.toml
toml
[dependencies]
coi = { package = "coi-actix-web", version = "0.4.0" }
Note
It's important to rename the package to
coi
since it re-exports proc-macros from thecoi
crate, which expects the crate to be namedcoi
.
and in your code:
```rust use coi::inject; ...
async getall(#[inject] service: Arc
See [coi-actix-sample
] for a more involved example.
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
SPDX-License-Identifier: MIT OR Apache-2.0