diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..3e7b2f5 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,25 @@ +[package] +name = "impl_trait" +version = "0.1.0" +authors = ["SoniEx2 <endermoneymod@gmail.com>"] +edition = "2018" +description = "Allows impl trait inside inherent impl." +readme = "README.md" +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" |