Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b120455

Browse files
committedJul 5, 2019
Work around overflow evaluating the requirement in Nightly rustdoc
See rust-lang/rust#62132 and rust-lang/rust#62059 The fix in rustdoc is at the “investigating the feasibility” stage, and this is preventing Servo from upgrading its Rust toolchain.
1 parent 980c1f3 commit b120455

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed
 

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "synstructure"
3-
version = "0.10.2"
3+
version = "0.10.3"
44
authors = ["Nika Layzell <nika@thelayzells.com>"]
55

66
description = "Helper methods and macros for custom derives"

‎src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@
159159
//! For more example usage, consider investigating the `abomonation_derive` crate,
160160
//! which makes use of this crate, and is fairly simple.
161161
162+
#![recursion_limit="128"]
163+
162164
extern crate proc_macro;
163165
extern crate proc_macro2;
164166
#[macro_use]

‎test_traits/Cargo.toml

+4
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ authors = ["Nika Layzell <nika@thelayzells.com>"]
88

99
[lib]
1010
path = "lib.rs"
11+
12+
[dependencies]
13+
# To trigger https://github.com/rust-lang/rust/issues/62132
14+
syn = { version = "0.15", features = ["full"] }

0 commit comments

Comments
 (0)
Please sign in to comment.