Skip to content

Commit 6aeacea

Browse files
bors[bot]lnicola
andauthored
Merge #9737
9737: minor: Bump deps r=lnicola a=lnicola Upgrade `rowan` and avoid the duplicate `object` dependency. Co-authored-by: Laurențiu Nicola <[email protected]>
2 parents 4281cbe + 90e05ba commit 6aeacea

File tree

4 files changed

+20
-17
lines changed

4 files changed

+20
-17
lines changed

Cargo.lock

Lines changed: 5 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/proc_macro_api/Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,13 @@ log = "0.4.8"
1515
crossbeam-channel = "0.5.0"
1616
jod-thread = "0.1.1"
1717
memmap2 = "0.3.0"
18-
object = { version = "0.25.3", default-features = false, features = ["std", "read_core", "elf", "macho", "pe"] }
18+
object = { version = "0.26", default-features = false, features = [
19+
"std",
20+
"read_core",
21+
"elf",
22+
"macho",
23+
"pe",
24+
] }
1925
snap = "1.0"
2026

2127
paths = { path = "../paths", version = "0.0.0" }

crates/proc_macro_srv/Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@ edition = "2018"
99
doctest = false
1010

1111
[dependencies]
12-
object = { version = "0.25.3", default-features = false, features = ["std", "read_core", "elf", "macho", "pe"] }
12+
object = { version = "0.26", default-features = false, features = [
13+
"std",
14+
"read_core",
15+
"elf",
16+
"macho",
17+
"pe",
18+
] }
1319
libloading = "0.7.0"
1420
memmap2 = "0.3.0"
1521

crates/syntax/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ doctest = false
1212
[dependencies]
1313
cov-mark = "2.0.0-pre.1"
1414
itertools = "0.10.0"
15-
rowan = "=0.13.0-pre.7"
15+
rowan = "=0.13.0-pre.8"
1616
rustc_lexer = { version = "725.0.0", package = "rustc-ap-rustc_lexer" }
1717
rustc-hash = "1.1.0"
1818
arrayvec = "0.7"

0 commit comments

Comments
 (0)