blob: dfc22eef3274fe5b29d700caea9c82c5dd80485e (
plain) (
blame)
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
|
[package]
name = "impl_trait"
version = "0.1.1"
authors = ["SoniEx2 <endermoneymod@gmail.com>"]
edition = "2018"
description = "Allows impl trait inside inherent impl."
readme = "README.md"
repository = "https://soniex2.autistic.space/git-repos/impl_trait.git"
license = "AGPL-3.0-or-later"
autotests = false
[lib]
proc-macro = true
[[test]]
name = "tests"
path = "tests/progress.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dev-dependencies]
trybuild = "1.0"
[dependencies]
syn = "1.0"
quote = "1.0"
|