diff --git a/.gitignore b/.gitignore index 485968d9c56..94b3bea7a1f 100644 --- a/.gitignore +++ b/.gitignore @@ -78,4 +78,7 @@ package.json ## Rustdoc GUI tests tests/rustdoc-gui/src/**.lock +## Yggdrasil OS ABI link +/yggdrasil-abi + # Before adding new lines, see the comment at the top. diff --git a/Cargo.lock b/Cargo.lock index 12a42955102..ea47234b369 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7162,7 +7162,6 @@ dependencies = [ [[package]] name = "yggdrasil-abi" version = "0.1.0" -source = "git+https://git.alnyan.me/yggdrasil/yggdrasil-abi.git#7ed747351a3e72ffb6602eef48cda8403b3b1db9" dependencies = [ "compiler_builtins", "rustc-std-workspace-alloc", @@ -7172,7 +7171,6 @@ dependencies = [ [[package]] name = "yggdrasil-rt" version = "0.1.0" -source = "git+https://git.alnyan.me/yggdrasil/yggdrasil-rt.git#adfc37dde413ca413bf9b2bded45dd32456ce9ab" dependencies = [ "compiler_builtins", "rustc-std-workspace-alloc", diff --git a/Cargo.toml b/Cargo.toml index f720637cc29..1d1297dab50 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -121,3 +121,5 @@ clippy_lints = { path = "src/tools/clippy/clippy_lints" } [patch."https://git.alnyan.me/yggdrasil/yggdrasil-rt.git"] yggdrasil-rt = { path = "yggdrasil-rt" } +[patch."https://git.alnyan.me/yggdrasil/yggdrasil-abi.git"] +yggdrasil-abi = { path = "yggdrasil-abi" }