about summary refs log tree commit diff
path: root/library/compiler-builtins/crates
diff options
context:
space:
mode:
authorTrevor Gross <tmgross@umich.edu>2025-07-24 03:26:32 -0500
committerTrevor Gross <tmgross@umich.edu>2025-07-24 03:29:05 -0500
commit95c42630eb7fb234dfd369d2c1ce671c7b304f9e (patch)
treebe3b5b88e8ccf3bcc6c06b8d080863beebd2db28 /library/compiler-builtins/crates
parentfcc7824b883bd9bba8e588fbe61d45dc427ea18e (diff)
downloadrust-95c42630eb7fb234dfd369d2c1ce671c7b304f9e.tar.gz
rust-95c42630eb7fb234dfd369d2c1ce671c7b304f9e.zip
symcheck: Switch the `object` dependency from git to crates.io
Wasm support has since been released, so we no longer need to depend on
a git version of `object`.
Diffstat (limited to 'library/compiler-builtins/crates')
-rw-r--r--library/compiler-builtins/crates/symbol-check/Cargo.toml3
1 files changed, 1 insertions, 2 deletions
diff --git a/library/compiler-builtins/crates/symbol-check/Cargo.toml b/library/compiler-builtins/crates/symbol-check/Cargo.toml
index 30969ee406a..e2218b49172 100644
--- a/library/compiler-builtins/crates/symbol-check/Cargo.toml
+++ b/library/compiler-builtins/crates/symbol-check/Cargo.toml
@@ -5,8 +5,7 @@ edition = "2024"
 publish = false
 
 [dependencies]
-# FIXME: used as a git dependency since the latest release does not support wasm
-object = { git = "https://github.com/gimli-rs/object.git", rev = "013fac75da56a684377af4151b8164b78c1790e0" }
+object = "0.37.1"
 serde_json = "1.0.140"
 
 [features]