[package]
edition = "2021"
name = "rust-dicore"
version = "0.2.6"
build = false
include = [
"README.md",
"src/**/*",
"tests/**/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "rust-dicore: A Rust dependency injection framework inspired by Microsoft.Extensions.DependencyInjection"
readme = "README.md"
keywords = [
"di",
"dependency-injection",
"ioc",
"rust-dicore",
"service-provider",
]
categories = [
"rust-patterns",
"asynchronous",
]
license = "MIT"
repository = "https://gitcode.com/rf2026/rust-dicore"
[features]
default = []
[lib]
name = "rust_dicore"
path = "src/lib.rs"
doc = true
[[test]]
name = "bridge"
path = "tests/bridge.rs"
[[test]]
name = "collection"
path = "tests/collection.rs"
[[test]]
name = "coverage_gap"
path = "tests/coverage_gap.rs"
[[test]]
name = "inject"
path = "tests/inject.rs"
[[test]]
name = "module"
path = "tests/module.rs"
[[test]]
name = "named"
path = "tests/named.rs"
[[test]]
name = "patterns"
path = "tests/patterns.rs"
[[test]]
name = "resolution"
path = "tests/resolution.rs"
[[test]]
name = "scope"
path = "tests/scope.rs"
[[test]]
name = "wrapper"
path = "tests/wrapper.rs"
[dependencies.inventory]
version = "0.3"
[dependencies.rust-dicore-macros]
version = "0.2.6"
[dependencies.thiserror]
version = "1"