disable RVM crate temporarily

This commit is contained in:
Yu Chen 2021-07-27 21:46:35 +08:00
parent 3f3613ec93
commit d9e22795e5
2 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ edition = "2018"
graphic = [] graphic = []
zircon = ["zircon-loader"] zircon = ["zircon-loader"]
linux = ["linux-loader", "linux-object", "rcore-fs-sfs"] linux = ["linux-loader", "linux-object", "rcore-fs-sfs"]
hypervisor = ["rvm", "zircon", "zircon-object/hypervisor", "zircon-syscall/hypervisor"] #hypervisor = ["rvm", "zircon", "zircon-object/hypervisor", "zircon-syscall/hypervisor"]
[profile.release] [profile.release]
lto = true lto = true
@ -32,7 +32,7 @@ linux-loader = { path = "../linux-loader", default-features = false, optional =
linux-object = { path = "../linux-object", default-features = false, optional = true } linux-object = { path = "../linux-object", default-features = false, optional = true }
zircon-syscall = { path = "../zircon-syscall", optional = true } zircon-syscall = { path = "../zircon-syscall", optional = true }
rcore-fs-sfs = { git = "https://github.com/rcore-os/rcore-fs", rev = "6df6cd2", optional = true } rcore-fs-sfs = { git = "https://github.com/rcore-os/rcore-fs", rev = "6df6cd2", optional = true }
rvm = { git = "https://github.com/rcore-os/RVM", rev = "382fc60", optional = true } #rvm = { git = "https://github.com/rcore-os/RVM", rev = "382fc60", optional = true }
[target.'cfg(target_arch = "x86_64")'.dependencies] [target.'cfg(target_arch = "x86_64")'.dependencies]
x86_64 = "0.14" x86_64 = "0.14"

View File

@ -8,7 +8,7 @@ description = "Zircon syscalls implementation"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features] [features]
hypervisor = ["zircon-object/hypervisor"] #hypervisor = ["zircon-object/hypervisor"]
[dependencies] [dependencies]
log = "0.4" log = "0.4"