Skip to content

Commit

Permalink
Updated cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Neo-Ciber94 committed Apr 15, 2022
1 parent 9d543d5 commit 54d7b69
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ members = [
"dilib",
"dilib-derive",
"dilib-macros",

# internal
"dilib-experimental",
"test_suite",
"samples/*"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ A dependency injection library for Rust.
## Usage
```toml
[dependencies]
dilib = "0.2.0-alpha"
dilib = "0.2.1-alpha"
```

## Example
Expand Down
4 changes: 2 additions & 2 deletions dilib-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dilib-derive"
description = "Derive proc_macros for the dilib crate"
version = "0.2.0-alpha"
version = "0.2.1-alpha"
authors = ["Freddy L."]
edition = "2021"
license-file = "LICENSE"
Expand All @@ -20,4 +20,4 @@ syn = { version = "1.0.91" , features=["parsing"]}
mattro = "0.1.2"

[dev-dependencies]
#dilib = { path = "../dilib", version="0.2.0-alpha" }
#dilib = { path = "../dilib", version="0.2.1-alpha" }
5 changes: 4 additions & 1 deletion dilib-derive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,7 @@ struct User(String);
struct UserService {
db: Singleton<Vec<User>>,
}
```
```

## License
This project is licensed under the [MIT license](LICENSE).
4 changes: 2 additions & 2 deletions dilib-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dilib-macros"
description = "Procedural macros for the dilib crate"
version = "0.2.0-alpha"
version = "0.2.1-alpha"
license-file = "LICENSE"
edition = "2021"
rust-version = "1.59.0"
Expand All @@ -17,5 +17,5 @@ mattro = "0.1.2"
const_format = "0.2.22"

[dev-dependencies]
#dilib = { path = "../dilib", version="0.2.0-alpha" }
#dilib = { path = "../dilib", version="0.2.1-alpha" }

5 changes: 4 additions & 1 deletion dilib-macros/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Dilib Macros

Procedural macros for `dilib`.
Procedural macros for `dilib`.

## License
This project is licensed under the [MIT license](LICENSE).
8 changes: 4 additions & 4 deletions dilib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ lazy = ["once_cell"]
unstable_provide = ["dilib-macros", "global", "ctor", "lazy"]

[dependencies]
dilib-derive = { path = "../dilib-derive", version="0.2.0-alpha", optional = true }
dilib-macros = { path = "../dilib-macros", version="0.2.0-alpha", optional = true }
dilib-derive = { path = "../dilib-derive", version="0.2.1-alpha", optional = true }
dilib-macros = { path = "../dilib-macros", version="0.2.1-alpha", optional = true }
ctor = { version ="0.1.22", optional = true }
once_cell = { version = "1.10.0", optional = true }

[dev-dependencies]
dilib-derive = { path="../dilib-derive", version="0.2.0-alpha" }
#dilib = { path = ".", version="0.2.0-alpha", features=["full", "unstable_provide"]}
dilib-derive = { path="../dilib-derive", version="0.2.1-alpha" }
#dilib = { path = ".", version="0.2.1-alpha", features=["full", "unstable_provide"]}
2 changes: 1 addition & 1 deletion dilib/README.md

0 comments on commit 54d7b69

Please sign in to comment.