-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement Drive for concrete container types (#17)
* Implement Drive for concrete container types * Bump 0.4.0
- Loading branch information
1 parent
39dc342
commit b9e9841
Showing
3 changed files
with
43 additions
and
31 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "derive-visitor-macros" | ||
description = "Macros for derive-visitor package" | ||
categories = ["development-tools"] | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["Kit Isaev <[email protected]>"] | ||
license = "MIT" | ||
documentation = "https://docs.rs/derive-visitor" | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "derive-visitor" | ||
description = "Derive visitor pattern for arbitrary data structures" | ||
categories = ["development-tools"] | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["Kit Isaev <[email protected]>"] | ||
license = "MIT" | ||
edition = "2018" | ||
|
@@ -13,7 +13,7 @@ keywords = ["visitor", "derive", "macro"] | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
derive-visitor-macros = { version = "0.3.0", path = "../derive-visitor-macros" } | ||
derive-visitor-macros = { version = "0.4.0", path = "../derive-visitor-macros" } | ||
|
||
[features] | ||
std-types-drive = [] |
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