-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8099817
commit 1b109eb
Showing
4 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "o2o" | ||
version = "0.4.9" | ||
version = "0.4.10" | ||
edition = "2021" | ||
authors = ["Artem Romanenia <[email protected]>"] | ||
categories = ["rust-patterns"] | ||
|
@@ -10,8 +10,8 @@ license = "MIT OR Apache-2.0" | |
repository = "https://github.com/Artem-Romanenia/o2o" | ||
|
||
[dependencies] | ||
o2o-impl = { version = "0.4.9", path = "o2o-impl", optional = true } | ||
o2o-macros = { version = "0.4.9", path = "o2o-macros", optional = true } | ||
o2o-impl = { version = "0.4.10", path = "o2o-impl", optional = true } | ||
o2o-macros = { version = "0.4.10", path = "o2o-macros", optional = true } | ||
|
||
[features] | ||
default = ["macro"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "o2o-impl" | ||
version = "0.4.9" | ||
version = "0.4.10" | ||
edition = "2021" | ||
authors = ["Artem Romanenia <[email protected]>"] | ||
description = "Implementation of 'o2o' crate" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "o2o-macros" | ||
version = "0.4.9" | ||
version = "0.4.10" | ||
edition = "2021" | ||
authors = ["Artem Romanenia <[email protected]>"] | ||
description = "Macro definitions of 'o2o' crate" | ||
|
@@ -11,5 +11,5 @@ repository = "https://github.com/Artem-Romanenia/o2o" | |
proc-macro = true | ||
|
||
[dependencies] | ||
o2o-impl = { version = "0.4.9", path = "../o2o-impl" } | ||
o2o-impl = { version = "0.4.10", path = "../o2o-impl" } | ||
syn = "1.0.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "o2o-tests" | ||
version = "0.4.9" | ||
version = "0.4.10" | ||
edition = "2021" | ||
authors = ["Artem Romanenia <[email protected]>"] | ||
description = "Tests for 'o2o' crate" | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/Artem-Romanenia/o2o" | ||
|
||
[dependencies] | ||
o2o = { version = "0.4.9", path = "../" } | ||
o2o = { version = "0.4.10", path = "../" } | ||
anyhow = "1.0.86" | ||
|
||
[dev-dependencies] | ||
|