summaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorMatthew Maurer <mmaurer@google.com>2020-06-02 11:15:12 -0700
committerMatthew Maurer <mmaurer@google.com>2020-06-02 11:15:12 -0700
commitd26833f88b138b4842fbe882babaf1565774d1ad (patch)
tree235b853b9b2b53adec8786a6a1f574d4359b51c5 /Cargo.toml.orig
parentb7295a48ee001ee1d5cabdcfee01dbbc58e75531 (diff)
downloadproc-macro-error-attr-d26833f88b138b4842fbe882babaf1565774d1ad.tar.gz
Import proc-macro-error-attr-1.0.2
Change-Id: I20e21e19335cd5a5bfccde08c22f28e530135454
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig26
1 files changed, 26 insertions, 0 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
new file mode 100644
index 0000000..7414642
--- /dev/null
+++ b/Cargo.toml.orig
@@ -0,0 +1,26 @@
+[package]
+name = "proc-macro-error-attr"
+version = "1.0.2"
+authors = ["CreepySkeleton <creepy-skeleton@yandex.ru>"]
+edition = "2018"
+description = "Attribute macro for proc-macro-error crate"
+license = "MIT OR Apache-2.0"
+repository = "https://gitlab.com/CreepySkeleton/proc-macro-error"
+
+build = "build.rs"
+
+[lib]
+proc-macro = true
+
+[package.metadata.docs.rs]
+targets = ["x86_64-unknown-linux-gnu"]
+
+[dependencies]
+quote = "1"
+proc-macro2 = "1"
+syn-mid = "0.5"
+# "derive" is for `Attribute`, "parsing" is for `Parse`
+syn = { version = "1", default-features = false, features = ["derive", "parsing", "proc-macro", "printing"] }
+
+[build-dependencies]
+version_check = "0.9"