-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from danielhenrymantilla/next
Version 0.1.3
- Loading branch information
Showing
10 changed files
with
116 additions
and
86 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ name = "lending-iterator" | |
authors = [ | ||
"Daniel Henry-Mantilla <[email protected]>", | ||
] | ||
version = "0.1.2" # Keep in sync | ||
version = "0.1.3" # Keep in sync | ||
edition = "2021" | ||
|
||
license = "Zlib OR MIT OR Apache-2.0" | ||
|
@@ -18,7 +18,13 @@ readme = "README.md" | |
rust-version = "1.57.0" | ||
|
||
description = "Fully general lending iterators in stable rust: windows_mut!" | ||
keywords = ["rust-patterns"] | ||
keywords = [ | ||
"streaming", | ||
"streaming-iterator", | ||
"windows_mut", | ||
"hkt", | ||
"gat", | ||
] | ||
|
||
[features] | ||
default = [ | ||
|
@@ -50,7 +56,7 @@ macro-vis.version = "0.1.1" | |
|
||
[dependencies.lending-iterator-proc_macros] | ||
path = "src/proc_macros" | ||
version = "0.1.2" # Keep in sync | ||
version = "0.1.3" # Keep in sync | ||
|
||
[dev-dependencies] | ||
|
||
|
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 was deleted.
Oops, something went wrong.
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,5 +1,65 @@ | ||
<style> | ||
summary { | ||
details.custom > summary { | ||
display: list-item; | ||
/* https://medium.com/simple-human/buttons-shouldnt-have-a-hand-cursor-b11e99ca374b */ | ||
cursor: default; | ||
} | ||
|
||
.summary-box { | ||
display: inline-block; | ||
} | ||
|
||
details.custom > summary span.summary-to-hide, | ||
details[open].custom > summary span.summary-to-see { | ||
display: none; | ||
} | ||
details.custom > summary span.summary-to-see, | ||
details[open].custom > summary span.summary-to-hide { | ||
display: inline; | ||
} | ||
|
||
/** | ||
* Button style from https://github.com/ubuwaits/css3-buttons | ||
* MIT-Licensed under the name of Chad Mazzola | ||
* rev: c5d2eccd18c0be21c291982e40da0c590f8bc32f | ||
* | ||
* I changed the following: I removed the padding, the width and `cursor: pointer`. | ||
**/ | ||
.summary-box { | ||
background-color: #eeeeee; | ||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #cccccc)); | ||
background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc); | ||
background-image: -moz-linear-gradient(top, #eeeeee, #cccccc); | ||
background-image: -ms-linear-gradient(top, #eeeeee, #cccccc); | ||
background-image: -o-linear-gradient(top, #eeeeee, #cccccc); | ||
background-image: linear-gradient(top, #eeeeee, #cccccc); | ||
border: 1px solid #ccc; | ||
border-bottom: 1px solid #bbb; | ||
border-radius: 3px; | ||
color: #333; | ||
font: bold 11px/1 "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif; | ||
/* padding: 8px 0; */ | ||
text-align: center; | ||
text-shadow: 0 1px 0 #eee; | ||
/* width: 150px; */ | ||
} | ||
.summary-box:hover { | ||
background-color: #dddddd; | ||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #dddddd), color-stop(100%, #bbbbbb)); | ||
background-image: -webkit-linear-gradient(top, #dddddd, #bbbbbb); | ||
background-image: -moz-linear-gradient(top, #dddddd, #bbbbbb); | ||
background-image: -ms-linear-gradient(top, #dddddd, #bbbbbb); | ||
background-image: -o-linear-gradient(top, #dddddd, #bbbbbb); | ||
background-image: linear-gradient(top, #dddddd, #bbbbbb); | ||
border: 1px solid #bbb; | ||
border-bottom: 1px solid #999; | ||
/* cursor: pointer; */ | ||
text-shadow: 0 1px 0 #ddd; | ||
} | ||
.summary-box:active { | ||
border: 1px solid #aaa; | ||
border-bottom: 1px solid #888; | ||
-webkit-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee; | ||
box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee; | ||
} | ||
</style> |
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
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ name = "lending-iterator-proc_macros" | |
authors = [ | ||
"Daniel Henry-Mantilla <[email protected]>" | ||
] | ||
version = "0.1.2" # Keep in sync | ||
version = "0.1.3" # Keep in sync | ||
edition = "2021" | ||
|
||
license = "Zlib OR MIT OR Apache-2.0" | ||
|