coi 0.5.0

coi is a Dependency Injection library.
Documentation
[package]
name = "coi"
version = "0.5.0"
authors = ["Paul Daniel Faria <Nashenas88@users.noreply.github.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Nashenas88/coi"
description = "coi is a Dependency Injection library."
readme = "../README.md"

[dependencies]
async-std = { version = "1.4.0", optional = true }
async-trait = { version = "0.1.22", optional = true }
coi-derive = { version = "0.4.1", optional = true, default-features = false }
futures = { version = "0.3.1", optional = true }

[features]
default = ["derive-async"]
derive = ["coi-derive"]
async = ["async-std", "async-trait", "futures"]
derive-async = ["coi-derive/async", "async"]