steloc 0.2.0

Simple, compile-time DI framework for Rust
Documentation
[dependencies.actix-http]
optional = true
version = "2"

[dependencies.actix-router]
optional = true
version = "0.2"

[dependencies.actix-web]
optional = true
version = "3"

[dependencies.frunk]
version = "0.4.0"

[dependencies.once_cell]
version = "1.4.1"

[dependencies.pin-project]
optional = true
version = "1"

[dependencies.steloc_macros]
version = "0.2.0"

[dev-dependencies.uuid]
features = ["v4"]
version = "0.8.1"

[features]
actix-support = ["actix-web", "actix-http", "actix-router", "pin-project"]
default = []

[lib]
name = "steloc"
path = "src/lib.rs"

[package]
authors = ["p0lunin <dmytro.polunin@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Simple, compile-time DI framework for Rust"
documentation = "https://docs.rs/steloc"
edition = "2018"
keywords = ["steloc", "di", "ioc", "dependency-injection"]
license = "MIT OR Apache-2.0"
name = "steloc"
readme = "README.md"
repository = "https://github.com/p0lunin/steloc"
version = "0.2.0"

[[test]]
name = "add_by_clone"
path = "tests/add_by_clone.rs"

[[test]]
name = "add_instance"
path = "tests/add_instance.rs"

[[test]]
name = "add_transient"
path = "tests/add_transient.rs"

[[test]]
name = "derive_unit_struct"
path = "tests/derive_unit_struct.rs"

[[test]]
name = "dyn_interface"
path = "tests/dyn_interface.rs"

[[test]]
name = "free_func_inject"
path = "tests/free_func_inject.rs"

[[test]]
name = "fully_qualified_type"
path = "tests/fully_qualified_type.rs"

[[test]]
name = "generics"
path = "tests/generics.rs"

[[test]]
name = "inject_init"
path = "tests/inject_init.rs"

[[test]]
name = "inject_with_generics"
path = "tests/inject_with_generics.rs"

[[test]]
name = "lifetimes"
path = "tests/lifetimes.rs"