coi-actix-web

Build Status docs.rs crates.io

Dependency Injection in Rust

This crate provides integration support between coi and actix-web.

Example

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 the coi crate, which expects the crate to be named coi.

and in your code:

```rust use coi::inject; ...

[inject]

async getall(#[inject] service: Arc) -> Resulterr(|e| log::error!("{}", e))?; Ok(HttpResponse::Ok().json(DataDto::from(name))) } ```

See [coi-actix-sample] for a more involved example.

License

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