Prepare to publish preview as syn-next
diff --git a/Cargo.toml b/Cargo.toml
index 5faba2b..a70941d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,15 +1,18 @@
 [package]
-name = "syn"
+name = "syn-next"
 version = "0.14.9" # don't forget to update html_root_url
 authors = ["David Tolnay <dtolnay@gmail.com>"]
 license = "MIT/Apache-2.0"
 description = "Nom parser for Rust source code"
-repository = "https://github.com/dtolnay/syn"
-documentation = "https://docs.rs/syn"
+repository = "https://github.com/dtolnay/syn/tree/next"
+documentation = "https://docs.rs/syn-next"
 categories = ["development-tools::procedural-macro-helpers"]
 readme = "README.md"
 include = ["/Cargo.toml", "/src/**/*.rs", "/README.md", "/LICENSE-APACHE", "/LICENSE-MIT"]
 
+[lib]
+name = "syn"
+
 [[example]]
 name = "dump-syntax"
 path = "examples/dump-syntax/main.rs"
diff --git a/src/lib.rs b/src/lib.rs
index 075bc53..bcc560d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -253,7 +253,7 @@
 //!   dynamic library libproc_macro from rustc toolchain.
 
 // Syn types in rustdoc of other crates get linked to here.
-#![doc(html_root_url = "https://docs.rs/syn/0.14.9")]
+#![doc(html_root_url = "https://docs.rs/syn-next/0.14.9")]
 #![cfg_attr(feature = "cargo-clippy", deny(clippy, clippy_pedantic))]
 // Ignored clippy lints.
 #![cfg_attr(