Skip to content
Snippets Groups Projects
Verified Commit e97f26c7 authored by Jacob Lorentzon's avatar Jacob Lorentzon
Browse files

Use crates.io syscall dependency.

parent 67976e75
No related branches found
No related tags found
No related merge requests found
...@@ -369,7 +369,7 @@ dependencies = [ ...@@ -369,7 +369,7 @@ dependencies = [
"generic-rt", "generic-rt",
"goblin", "goblin",
"plain", "plain",
"redox_syscall 0.5.2 (git+https://gitlab.redox-os.org/redox-os/syscall.git)", "redox_syscall",
] ]
[[package]] [[package]]
...@@ -379,21 +379,14 @@ source = "git+https://gitlab.redox-os.org/redox-os/event.git#36ac5a57a8573f7546d ...@@ -379,21 +379,14 @@ source = "git+https://gitlab.redox-os.org/redox-os/event.git#36ac5a57a8573f7546d
dependencies = [ dependencies = [
"bitflags", "bitflags",
"libredox", "libredox",
"redox_syscall 0.5.2 (git+https://gitlab.redox-os.org/redox-os/syscall.git?rev=387f1c3)", "redox_syscall",
] ]
[[package]] [[package]]
name = "redox_syscall" name = "redox_syscall"
version = "0.5.2" version = "0.5.3"
source = "git+https://gitlab.redox-os.org/redox-os/syscall.git?rev=387f1c3#387f1c332681a3cabe04294bce801e9c8c433df5" source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [ checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
"bitflags",
]
[[package]]
name = "redox_syscall"
version = "0.5.2"
source = "git+https://gitlab.redox-os.org/redox-os/syscall.git#387f1c332681a3cabe04294bce801e9c8c433df5"
dependencies = [ dependencies = [
"bitflags", "bitflags",
] ]
...@@ -422,7 +415,7 @@ dependencies = [ ...@@ -422,7 +415,7 @@ dependencies = [
"redox-path", "redox-path",
"redox-rt", "redox-rt",
"redox_event", "redox_event",
"redox_syscall 0.5.2 (git+https://gitlab.redox-os.org/redox-os/syscall.git?rev=387f1c3)", "redox_syscall",
"sc", "sc",
"scrypt", "scrypt",
"sha-crypt", "sha-crypt",
......
...@@ -59,7 +59,7 @@ features = ["c_api"] ...@@ -59,7 +59,7 @@ features = ["c_api"]
sc = "0.2.3" sc = "0.2.3"
[target.'cfg(target_os = "redox")'.dependencies] [target.'cfg(target_os = "redox")'.dependencies]
redox_syscall = "0.5.2" redox_syscall = "0.5.3"
redox-rt = { path = "redox-rt" } redox-rt = { path = "redox-rt" }
redox-path = "0.2" redox-path = "0.2"
redox_event = { git = "https://gitlab.redox-os.org/redox-os/event.git", default-features = false, features = ["redox_syscall"] } redox_event = { git = "https://gitlab.redox-os.org/redox-os/event.git", default-features = false, features = ["redox_syscall"] }
...@@ -74,6 +74,3 @@ panic = "abort" ...@@ -74,6 +74,3 @@ panic = "abort"
[profile.release] [profile.release]
panic = "abort" panic = "abort"
[patch.crates-io]
redox_syscall = { git = "https://gitlab.redox-os.org/redox-os/syscall.git", rev = "387f1c3" }
...@@ -12,6 +12,6 @@ description = "Libc-independent runtime for Redox" ...@@ -12,6 +12,6 @@ description = "Libc-independent runtime for Redox"
bitflags = "2" bitflags = "2"
goblin = { version = "0.7", default-features = false, features = ["elf32", "elf64", "endian_fd"] } goblin = { version = "0.7", default-features = false, features = ["elf32", "elf64", "endian_fd"] }
plain = "0.2" plain = "0.2"
redox_syscall = "0.5.2" redox_syscall = "0.5.3"
generic-rt = { path = "../generic-rt" } generic-rt = { path = "../generic-rt" }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment