Skip to content

Commit c9ca77f

Browse files
committed
Bump object
1 parent 32b6f10 commit c9ca77f

File tree

3 files changed

+20
-9
lines changed

3 files changed

+20
-9
lines changed

Cargo.lock

+12-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/proc_macro_api/Cargo.toml

+7-5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ rust-version = "1.56"
1010
doctest = false
1111

1212
[dependencies]
13+
object = { version = "0.28", default-features = false, features = [
14+
"std",
15+
"read_core",
16+
"elf",
17+
"macho",
18+
"pe",
19+
] }
1320
serde = { version = "1.0", features = ["derive"] }
1421
serde_json = { version = "1.0", features = ["unbounded_depth"] }
1522
tracing = "0.1"
@@ -22,8 +29,3 @@ stdx = { path = "../stdx", version = "0.0.0" }
2229
profile = { path = "../profile", version = "0.0.0" }
2330
# Intentionally *not* depend on anything salsa-related
2431
# base_db = { path = "../base_db", version = "0.0.0" }
25-
26-
[dependencies.object]
27-
version = "0.27"
28-
default-features = false
29-
features = ["std", "read_core", "elf", "macho", "pe"]

crates/proc_macro_srv/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ rust-version = "1.56"
1010
doctest = false
1111

1212
[dependencies]
13-
object = { version = "0.27", default-features = false, features = [
13+
object = { version = "0.28", default-features = false, features = [
1414
"std",
1515
"read_core",
1616
"elf",

0 commit comments

Comments
 (0)