aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig24
1 files changed, 13 insertions, 11 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 965c63a..0c7caa0 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,15 +1,13 @@
[package]
name = "syn-mid"
-version = "0.5.3"
-authors = ["Taiki Endo <te316e89@gmail.com>"]
-edition = "2018"
+version = "0.6.0"
+edition = "2021"
+rust-version = "1.56"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/taiki-e/syn-mid"
-documentation = "https://docs.rs/syn-mid"
keywords = ["syn", "macros"]
-categories = ["development-tools::procedural-macro-helpers"]
-readme = "README.md"
-exclude = ["/.github", "/scripts"]
+categories = ["development-tools::procedural-macro-helpers", "parser-implementations"]
+exclude = ["/.*", "/tools"]
description = """
Providing the features between \"full\" and \"derive\" of syn.
"""
@@ -19,13 +17,17 @@ all-features = true
targets = ["x86_64-unknown-linux-gnu"]
[workspace]
-members = ["examples/const_fn", "examples/const_fn_test"]
+resolver = "2"
+members = ["examples/const_fn"]
+
+[lib]
+doc-scrape-examples = false
[features]
clone-impls = ["syn/clone-impls"]
-# NB: proc-macro2, quote, and syn are public dependencies.
+# Note: proc-macro2, quote, and syn are public dependencies.
[dependencies]
-proc-macro2 = { version = "1", default-features = false }
+proc-macro2 = { version = "1.0.60", default-features = false }
quote = { version = "1", default-features = false }
-syn = { version = "1.0.44", default-features = false, features = ["parsing", "printing", "derive"] }
+syn = { version = "2", default-features = false, features = ["parsing", "printing", "derive"] }