Disable object's unnecessary features in proc macro that loads LP code (#2018)

* Disable object/decompress

* Only enable elf support in object
This commit is contained in:
Dániel Buga 2024-08-30 16:37:27 +02:00 committed by GitHub
parent f9ab55c38f
commit fce510f50a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,7 +17,7 @@ proc-macro = true
darling = "0.20.10"
document-features = "0.2.10"
litrs = "0.4.1"
object = { version = "0.36.3", optional = true }
object = { version = "0.36.4", optional = true, default-features = false, features = ["read_core", "elf"] }
proc-macro-crate = "3.2.0"
proc-macro-error = "1.0.4"
proc-macro2 = "1.0.86"