-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (25 loc) · 890 Bytes
/
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
# Templated by `cargo-generate` using https://github.com/danielhenrymantilla/proc-macro-template
[package]
name = "higher-order-closure"
authors = [
"Daniel Henry-Mantilla <[email protected]>"
]
version = "0.0.5" # Keep in sync
edition = "2018"
license = "Zlib OR MIT OR Apache-2.0"
repository = "https://github.com/danielhenrymantilla/higher-order-closure.rs"
documentation = "https://docs.rs/higher-order-closure"
readme = "README.md"
description = "Allow function lifetime elision and explicit `for<'a>` annotations on closures."
keywords = ["closure", "signature", "higher_order", "hrtb", "lifetime"]
[features]
better-docs = [] # allowed to break MSRV
ui-tests = ["better-docs"]
[dependencies]
[dev-dependencies]
[workspace]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--html-before-content", "fix-docsrs-li-details-summary.html",
]