about summary refs log tree commit diff
path: root/compiler/rustc_query_impl
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2023-10-23 11:13:39 +1100
committerNicholas Nethercote <n.nethercote@gmail.com>2023-10-30 08:25:51 +1100
commit28e60de4879786a02c215f83f8ba96f474bcbcaa (patch)
treea7656e8813a6c107ddf65f41076c4fa494d11e50 /compiler/rustc_query_impl
parentec2b311914a4880235862f3cd65fe24e92e6d3a5 (diff)
downloadrust-28e60de4879786a02c215f83f8ba96f474bcbcaa.tar.gz
rust-28e60de4879786a02c215f83f8ba96f474bcbcaa.zip
Remove `memoffset` dependency from `rustc_query_impl`.
The comment explains it's for `unstable_offset_of`, but `offset_of` is
now stable.
Diffstat (limited to 'compiler/rustc_query_impl')
-rw-r--r--compiler/rustc_query_impl/Cargo.toml3
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/rustc_query_impl/Cargo.toml b/compiler/rustc_query_impl/Cargo.toml
index a350e8b2e3a..dac86116d5b 100644
--- a/compiler/rustc_query_impl/Cargo.toml
+++ b/compiler/rustc_query_impl/Cargo.toml
@@ -22,8 +22,5 @@ rustc_span = { path = "../rustc_span" }
 thin-vec = "0.2.12"
 tracing = "0.1"
 
-# Not used directly, but included to enable the unstable_offset_of feature
-memoffset = { version = "0.9.0", features = ["unstable_offset_of"] }
-
 [features]
 rustc_use_parallel_compiler = ["rustc-rayon-core", "rustc_query_system/rustc_use_parallel_compiler"]