aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig12
1 files changed, 8 insertions, 4 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 55cd2a6..8712673 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
[package]
name = "syn-mid"
-version = "0.5.0"
+version = "0.5.1"
authors = ["Taiki Endo <te316e89@gmail.com>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
@@ -14,6 +14,10 @@ description = """
Providing the features between \"full\" and \"derive\" of syn.
"""
+[package.metadata.docs.rs]
+all-features = true
+targets = ["x86_64-unknown-linux-gnu"]
+
[workspace]
members = ["examples/const_fn", "examples/const_fn_test"]
@@ -21,6 +25,6 @@ members = ["examples/const_fn", "examples/const_fn_test"]
clone-impls = ["syn/clone-impls"]
[dependencies]
-proc-macro2 = "1.0"
-quote = "1.0"
-syn = { version = "1.0.5", default-features = false, features = ["parsing", "printing", "derive"] }
+proc-macro2 = { version = "1", default-features = false }
+quote = { version = "1", default-features = false }
+syn = { version = "1.0.44", default-features = false, features = ["parsing", "printing", "derive"] }