diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-12-23 08:49:36 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-12-23 08:49:36 +0000 |
commit | 85a28751611e564eb4cdde28ca953407f551b696 (patch) | |
tree | 9183b1d5595a87f84610d82616917b3300b7666c /crates | |
parent | 8aa2eb76dcff1f508dfbad03016d9dd45c3ce32d (diff) | |
parent | 56deb240b23dcdb4e9795018d540b5610a894d05 (diff) |
Merge #7015
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 https://github.com/rust-analyzer/rust-analyzer/pull/6817#issuecomment-744866239 is about.
Co-authored-by: Laurențiu Nicola <[email protected]>
Diffstat (limited to 'crates')
-rw-r--r-- | crates/proc_macro_srv/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/proc_macro_srv/Cargo.toml b/crates/proc_macro_srv/Cargo.toml index 1bfa6c3fc..df9a55c10 100644 --- a/crates/proc_macro_srv/Cargo.toml +++ b/crates/proc_macro_srv/Cargo.toml | |||
@@ -10,7 +10,7 @@ edition = "2018" | |||
10 | doctest = false | 10 | doctest = false |
11 | 11 | ||
12 | [dependencies] | 12 | [dependencies] |
13 | object = { version = "0.23", default-features = false, features = ["std", "read_core", "elf", "macho", "pe", "unaligned"] } | 13 | object = { version = "0.23", default-features = false, features = ["std", "read_core", "elf", "macho", "pe"] } |
14 | libloading = "0.6.0" | 14 | libloading = "0.6.0" |
15 | memmap = "0.7" | 15 | memmap = "0.7" |
16 | 16 | ||