2 unstable releases

0.2.0 Dec 24, 2023
0.1.0 Dec 20, 2023

#8 in #more

32 downloads per month

MIT license

35KB
763 lines

More DI for Axum   CI Crates.io MIT licensed

More DI is a dependency injection (DI) library for Rust. This library provides additional DI extensions for the axum web framework.

You may be looking for:

Dependency Injection in Axum

Consider the following structure.

use di::*;

#[injectable]
struct Person;

impl Person {
    fn speak(&self) -> &str {
        "Hello world!"
    }
}

This information can now be composed into a web application:

use crate::*;
use di::*;
use di_axum::*;

async fn say_hello(Inject(person): Inject<Person>) -> String {
    person.speak().to_owned()
}

#[tokio::main]
async fn main() {
    let provider = ServiceCollection::new()
        .add(Person::scoped())
        .build_provider()
        .unwrap();

    let app = Router::new()
        .route("/hello", get(say_hello))
        .with_provider(provider);

    let listener = TcpListener::bind("127.0.0.1:5000").await.unwrap();

    println!("Now listening on: {}", listener.local_addr().unwrap());

    axum::serve(listener, app).await.unwrap();
}

License

This project is licensed under the MIT license.

Dependencies

~4.5MB
~83K SLoC