alnyan/yggdrasil: fix dependencies after moving to monorepo

This commit is contained in:
2024-03-12 18:33:58 +02:00
parent a9ef80f7ab
commit 96081e06e9
3 changed files with 2 additions and 13 deletions
-2
View File
@@ -5,7 +5,6 @@ version = 3
[[package]]
name = "abi-generator"
version = "0.1.0"
source = "git+https://git.alnyan.me/yggdrasil/abi-generator.git#635bf51bb1cde626d477df477604d58d107bc037"
dependencies = [
"proc-macro2",
"quote",
@@ -16,7 +15,6 @@ dependencies = [
[[package]]
name = "abi-lib"
version = "0.1.0"
source = "git+https://git.alnyan.me/yggdrasil/abi-generator.git#635bf51bb1cde626d477df477604d58d107bc037"
dependencies = [
"compiler_builtins",
"rustc-std-workspace-core",
-9
View File
@@ -119,14 +119,5 @@ rustc-std-workspace-core = { path = 'library/rustc-std-workspace-core' }
rustc-std-workspace-alloc = { path = 'library/rustc-std-workspace-alloc' }
rustc-std-workspace-std = { path = 'library/rustc-std-workspace-std' }
[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" }
[patch.'https://git.alnyan.me/yggdrasil/libyalloc.git']
libyalloc = { path = "libyalloc" }
[patch.'https://git.alnyan.me/yggdrasil/yggdrasil-abi-def.git']
yggdrasil-abi-def = { path = "yggdrasil-abi-def" }
[patch."https://github.com/rust-lang/rust-clippy"]
clippy_lints = { path = "src/tools/clippy/clippy_lints" }
+2 -2
View File
@@ -38,8 +38,8 @@ object = { version = "0.32.0", default-features = false, optional = true, featur
object = { version = "0.32.0", default-features = false, optional = true, features = ['read_core', 'xcoff', 'unaligned', 'archive'] }
[target.'cfg(target_os = "yggdrasil")'.dependencies]
yggdrasil-rt = { git = "https://git.alnyan.me/yggdrasil/yggdrasil-rt.git", features = ['rustc-dep-of-std'] }
libyalloc = { git = "https://git.alnyan.me/yggdrasil/libyalloc.git", features = ['rustc-dep-of-std'] }
yggdrasil-rt = { path = "../../../lib/runtime", features = ['rustc-dep-of-std'] }
libyalloc = { path = "../../../lib/libyalloc", features = ['rustc-dep-of-std'] }
[dev-dependencies]
rand = { version = "0.8.5", default-features = false, features = ["alloc"] }