-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Replace goblin crate with object #6817
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
crates/proc_macro_srv/Cargo.toml
Outdated
libloading = "0.6.0" | ||
memmap = "0.7" | ||
object = { version = "0.22", git = "https://github.com/gimli-rs/object/" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why use a git dependency?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To pull in gimli-rs/object#261 for gimli-rs/object#222.
ee20c39
to
0e42e4b
Compare
7dc0245
to
170cdfe
Compare
bors try |
Hmm, we can merge it like this or wait until a new |
Why is the current (0.23) not good enough? |
It is, but with the fix in gimli-rs/object#261 we could probably disable the And maybe I should also replace the per-symbol string conversion with the |
I'd default to merging earlier and seding a followup, but you obv have more context here :) |
bors r=matklad |
That fix made it into the 0.23 release. |
7015: Disable the unaligned feature of the object crate r=lnicola a=lnicola We `mmap` the files so they should be reasonably aligned. Let's see what #6817 (comment) is about. Co-authored-by: Laurențiu Nicola <[email protected]>
Continuation of #4385.