Skip to content

Commit 5276992

Browse files
committed
Add new keyword for crate, restructure convert module a bit
1 parent 0cdb820 commit 5276992

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "provide"
3-
version = "0.0.0"
3+
version = "0.0.1"
44
edition = "2021"
55
description = "Truly zero cost dependency injection"
66
authors = ["tuguzT <[email protected]>"]
77
repository = "https://github.com/tuguzT/provide"
88
license = "MIT OR Apache-2.0"
9-
keywords = ["dependency-injection", "no-std"]
9+
keywords = ["provide", "dependency-injection", "no-std"]
1010
categories = ["data-structures", "rust-patterns", "algorithms", "no-std"]

src/context/convert/mod.rs

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
//! Context closely related to dependency [type conversions](core::convert).
2+
3+
pub use self::owned::{FromDependency, FromDependencyWith};
4+
5+
mod owned;

src/context/convert.rs src/context/convert/owned.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
//! Context closely related to dependency [type conversions](core::convert).
2-
31
use core::{
42
borrow::{Borrow, BorrowMut},
53
fmt::Debug,

0 commit comments

Comments
 (0)