forked from rcore-os/zCore
disable RVM crate temporarily
This commit is contained in:
parent
3f3613ec93
commit
d9e22795e5
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue