forked from lloydmeta/frunk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trailing commas in Hlist macros, more doc tests (lloydmeta#44)
* Add support for trailing commas in hlist! and Hlist! * Support trailing comma pattern matches as well * Stop ignoring doctests for LabelledGeneric and Generic * Try tweaking travis.yml * Core 0.0.10 release * Derives 0.0.11 release * 0.1.20 release * One less kw
- Loading branch information
Showing
10 changed files
with
105 additions
and
44 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
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,12 +1,12 @@ | ||
[package] | ||
name = "frunk" | ||
version = "0.1.19" | ||
version = "0.1.20" | ||
authors = ["Lloyd <[email protected]>"] | ||
description = "Frunk provides developers with a number of functional programming tools like HList, Generic, LabelledGeneric, Validated, Monoid, Semigroup and friends." | ||
license = "MIT" | ||
documentation = "https://docs.rs/frunk" | ||
repository = "https://github.com/lloydmeta/frunk" | ||
keywords = ["Frunk", "HList", "Generic", "Validated", "Semigroup", "Monoid"] | ||
keywords = ["Frunk", "HList", "Generic", "Validated", "Monoid"] | ||
|
||
[badges] | ||
travis-ci = { repository = "lloydmeta/frunk" } | ||
|
@@ -16,8 +16,8 @@ time = "0.1.36" | |
|
||
[dependencies.frunk_core] | ||
path = "core" | ||
version = "0.0.9" | ||
version = "0.0.10" | ||
|
||
[dependencies.frunk_derives] | ||
path = "derives" | ||
version = "0.0.10" | ||
version = "0.0.11" |
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 = "frunk_core" | ||
version = "0.0.9" | ||
version = "0.0.10" | ||
authors = ["Lloyd <[email protected]>"] | ||
description = "Frunk core provides developers with HList and Generic" | ||
license = "MIT" | ||
|
@@ -10,3 +10,7 @@ keywords = ["Frunk", "HList", "Generic", "LabelledGeneric"] | |
|
||
[badges] | ||
travis-ci = { repository = "lloydmeta/frunk" } | ||
|
||
[dev-dependencies.frunk_derives] | ||
path = "../derives" | ||
version = "0.0.11" |
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
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
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
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 = "frunk_derives" | ||
version = "0.0.10" | ||
version = "0.0.11" | ||
authors = ["Lloyd <[email protected]>"] | ||
description = "frunk_derives contains the custom derivations for certain traits in Frunk." | ||
license = "MIT" | ||
|
@@ -20,4 +20,4 @@ quote = "0.3.15" | |
|
||
[dependencies.frunk_core] | ||
path = "../core" | ||
version = "0.0.9" | ||
version = "0.0.10" |
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
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
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