From 8fd7cd74067445484fbbd3f78e715c4fe24b004c Mon Sep 17 00:00:00 2001 From: Jay Somedon Date: Wed, 23 Dec 2020 17:57:43 +0800 Subject: [PATCH] Configure object crate's feature Signed-off-by: Jay Somedon --- crates/proc_macro_api/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/proc_macro_api/Cargo.toml b/crates/proc_macro_api/Cargo.toml index a72ae236af9..5b0a05dffd4 100644 --- a/crates/proc_macro_api/Cargo.toml +++ b/crates/proc_macro_api/Cargo.toml @@ -20,4 +20,4 @@ tt = { path = "../tt", version = "0.0.0" } base_db = { path = "../base_db", version = "0.0.0" } stdx = { path = "../stdx", version = "0.0.0" } snap = "1" -object = "0.22.0" +object = { version = "0.23.0", default-features = false, features = ["std", "read_core", "elf", "macho", "pe", "unaligned"] }