-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
79 lines (64 loc) · 1.53 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Templated by `cargo-generate` using https://github.com/danielhenrymantilla/proc-macro-template
[lib]
path = "src/_lib.rs"
[package]
name = "lending-iterator"
authors = [
"Daniel Henry-Mantilla <daniel.henry.mantilla@gmail.com>",
]
version = "0.1.7" # Keep in sync
edition = "2021"
license = "Zlib OR MIT OR Apache-2.0"
repository = "https://github.com/danielhenrymantilla/lending-iterator.rs"
documentation = "https://docs.rs/lending-iterator"
readme = "README.md"
rust-version = "1.57.0"
description = "Fully general lending iterators in stable rust: windows_mut!"
keywords = [
"streaming",
"streaming-iterator",
"windows_mut",
"hkt",
"gat",
]
[features]
default = [
"alloc",
]
alloc = []
better-docs = [ # allowed to break MSRV
"futures",
"macro-vis",
]
testing = []
ui-tests = [
"better-docs",
]
[dependencies]
extension-traits.version = "1.0.1"
macro_rules_attribute.version = "0.1.2"
never-say-never.version = "6.6.666"
nougat.version = "0.2.4"
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.7" # Keep in sync
[dev-dependencies]
lending-iterator.path = "."
lending-iterator.features = ["testing"]
[workspace]
members = [
"src/proc_macros",
]
[package.metadata.docs.rs]
features = [
"better-docs",
]
rustdoc-args = [
"--html-before-content", "fix-docsrs-li-details-summary.html",
"--cfg", "doc_nightly",
]