-
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 #1 from danielhenrymantilla/initial-release
Initial release
- Loading branch information
Showing
34 changed files
with
1,561 additions
and
659 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
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 |
---|---|---|
@@ -1,15 +1,13 @@ | ||
# Templated by `cargo-generate` using https://github.com/danielhenrymantilla/proc-macro-template | ||
|
||
[lib] | ||
name = "lending_iterator" | ||
path = "src/_lib.rs" | ||
|
||
[package] | ||
name = "lending-iterator" | ||
authors = [ | ||
"Daniel Henry-Mantilla <[email protected]>", | ||
] | ||
version = "0.1.0-rc1" # Keep in sync | ||
version = "0.1.0" # Keep in sync | ||
edition = "2021" | ||
|
||
license = "Zlib OR MIT OR Apache-2.0" | ||
|
@@ -19,8 +17,8 @@ readme = "README.md" | |
|
||
rust-version = "1.57.0" | ||
|
||
# description = "…" | ||
# keywords = [] | ||
description = "Fully general lending iterators in stable rust: windows_mut!" | ||
keywords = ["rust-patterns"] | ||
|
||
[features] | ||
default = [ | ||
|
@@ -30,22 +28,29 @@ default = [ | |
alloc = [] | ||
|
||
better-docs = [ # allowed to break MSRV | ||
"futures", | ||
"macro-vis", | ||
] | ||
ui-tests = ["better-docs"] | ||
|
||
ui-tests = [ | ||
"better-docs", | ||
] | ||
|
||
[dependencies] | ||
extension-traits.version = "1.0.1" | ||
macro_rules_attribute.version = "0.1.2" | ||
nougat.version = "0.2.0-rc2" | ||
never-say-never = "6.6.666" | ||
never-say-never.version = "6.6.666" | ||
nougat.version = "0.2.1" | ||
polonius-the-crab.version = "0.2.1" | ||
|
||
futures.optional = true | ||
futures.version = "0.3.21" | ||
macro-vis.optional = true | ||
macro-vis.version = "0.1.1" | ||
|
||
[dependencies.lending-iterator-proc_macros] | ||
path = "src/proc_macros" | ||
version = "0.1.0-rc1" # Keep in sync | ||
version = "0.1.0" # Keep in sync | ||
|
||
[dev-dependencies] | ||
|
||
|
Oops, something went wrong.