Skip to content

Commit

Permalink
Update to quote 1.0.0-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Aug 10, 2019
1 parent 20fa917 commit 5a619b1
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ proc-macro = ["proc-macro2-next/proc-macro", "quote-next/proc-macro"]

[dependencies]
proc-macro2-next = { version = "1.0.0-rc1", default-features = false }
quote-next = { version = "1.0.0-rc1", optional = true, default-features = false }
quote-next = { version = "1.0.0-rc2", optional = true, default-features = false }
unicode-xid = "0.2"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false # this is an internal crate which should never be published

[dependencies]
syn-next = { path = "..", features = ["full", "extra-traits"] }
quote-next = "1.0.0-rc1"
quote-next = "1.0.0-rc2"
color-backtrace = "0.2"
failure = "0.1"
indexmap = { version = "1.0", features = ["serde-1"] }
Expand Down
2 changes: 1 addition & 1 deletion dev/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ path = "main.rs"
name = "syn-dev"

[dependencies]
quote-next = "1.0.0-rc1"
quote-next = "1.0.0-rc2"

[dependencies.syn-next]
path = ".."
Expand Down
2 changes: 1 addition & 1 deletion examples/heapsize/heapsize_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ proc-macro = true

[dependencies]
proc-macro2-next = "1.0.0-rc1"
quote-next = "1.0.0-rc1"
quote-next = "1.0.0-rc2"
syn-next = { path = "../../.." }
2 changes: 1 addition & 1 deletion examples/lazy-static/lazy-static/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ proc-macro = true

[dependencies]
syn-next = { path = "../../../", features = ["full"] }
quote-next = "1.0.0-rc1"
quote-next = "1.0.0-rc2"
proc-macro2-next = { version = "1.0.0-rc1", features = ["nightly"] }
2 changes: 1 addition & 1 deletion examples/trace-var/trace-var/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ proc-macro = true

[dependencies]
syn-next = { path = "../../../", features = ["full", "fold"] }
quote-next = "1.0.0-rc1"
quote-next = "1.0.0-rc2"
proc-macro2-next = { version = "1.0.0-rc1", features = ["nightly"] }
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
//! ```toml
//! [dependencies]
//! syn-next = "1.0.0-rc2"
//! quote-next = "1.0.0-rc1"
//! quote-next = "1.0.0-rc2"
//!
//! [lib]
//! proc-macro = true
Expand Down

0 comments on commit 5a619b1

Please sign in to comment.