use the orginal crate multiboot and x86 instead of a modified version
... | ... | @@ -17,7 +17,6 @@ exclude = ["/loader/*", "/examples/*", "/.travis.yml", "/.gitlab-ci.yml", ".giti |
[badges] | ||
travis-ci = { repository = "hermitcore/libhermit-rs" } | ||
gitlab = { repository = "https://git.rwth-aachen.de/acs/public/hermitcore/libhermit-rs" } | ||
[lib] | ||
crate-type = ["staticlib"] | ||
... | ... | @@ -41,17 +40,15 @@ default-features = false |
[dependencies.smoltcp] | ||
version = "0.5" | ||
optional = true | ||
#git = "https://github.com/hermitcore/smoltcp.git" | ||
default-features = false | ||
features = ["log", "verbose", "alloc", "socket-udp", "socket-tcp", "proto-ipv4"] | ||
# for debugging: "log", "verbose" | ||
[target.'cfg(target_arch = "x86_64")'.dependencies.hermit-multiboot] | ||
git = "https://github.com/hermitcore/multiboot.git" | ||
[target.'cfg(target_arch = "x86_64")'.dependencies.multiboot] | ||
version = "0.*" | ||
[target.'cfg(target_arch = "x86_64")'.dependencies.x86] | ||
git = "https://github.com/hermitcore/rust-x86.git" | ||
branch = "hermit" | ||
version = "0.*" | ||
default-features = false | ||
[package.metadata.cargo-xbuild] | ||
... | ... |
Please register or sign in to comment