-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
43 lines (38 loc) · 951 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
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "fix-hidden-lifetime-bug"
version = "0.2.7"
authors = [
"Daniel Henry-Mantilla <daniel.henry.mantilla@gmail.com>",
]
edition = "2018"
license = "Zlib OR MIT OR Apache-2.0"
description = """Proc-macro to write an automatic fix for the "hidden lifetime in impl Trait" issue"""
repository = "https://github.com/danielhenrymantilla/fix-hidden-lifetime-bug.rs"
documentation = "https://docs.rs/fix-hidden-lifetime-bug"
readme = "README.md"
keywords = ["impl", "lifetime", "bug", "hidden", "bound"]
[dependencies.proc-macros]
package = "fix-hidden-lifetime-bug-proc_macros"
version = "=0.2.7"
path = "src/proc_macros"
optional = true
[features]
default = [
"proc-macros",
]
showme = [
"proc-macros/showme",
]
nightly = []
[package.metadata.docs.rs]
targets = [
"x86_64-unknown-linux-gnu",
]
features = [
"nightly",
"proc-macros",
]
[workspace]
members = ["src/proc_macros"]
[dev-dependencies]
automod = "1.0.2"