File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -83,19 +83,19 @@ checksum = "56fc6cf8dc8c4158eed8649f9b8b0ea1518eb62b544fe9490d66fa0b349eafe9"
83
83
84
84
[[package ]]
85
85
name = " amjad_os_kernel_user_link"
86
- version = " 0.1.5 "
86
+ version = " 0.2.0 "
87
87
source = " registry+https://github.com/rust-lang/crates.io-index"
88
- checksum = " a0c160b99e788822b2668c0dbc33dca5d77f45279c6d3ff61c1693b9442e0b10 "
88
+ checksum = " e8d1291ea9cf6043bfa74865f170b13a220ae79c0d253d1b9ad57e90be137247 "
89
89
dependencies = [
90
90
" compiler_builtins" ,
91
91
" rustc-std-workspace-core" ,
92
92
]
93
93
94
94
[[package ]]
95
95
name = " amjad_os_user_std"
96
- version = " 0.1.8 "
96
+ version = " 0.2.0 "
97
97
source = " registry+https://github.com/rust-lang/crates.io-index"
98
- checksum = " 829cdb1b3c937cc08902c1d7c477d2ac628e6cdf83e1979dff18c048e9438663 "
98
+ checksum = " e0e98406c58607f4f54f9ec8e5ffbf7570daba78c343ac640b27f094d62fe3f7 "
99
99
dependencies = [
100
100
" amjad_os_kernel_user_link" ,
101
101
" compiler_builtins" ,
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ r-efi-alloc = { version = "1.0.0", features = ['rustc-dep-of-std']}
59
59
60
60
[target .'cfg(target_os = "amjad_os")' .dependencies ]
61
61
# This is from `https://github.com/Amjad50/OS`, i.e. it must be run from that context
62
- user_std = { version = " 0.1.8 " , package = " amjad_os_user_std" , features = [' rustc-dep-of-std' ] }
62
+ user_std = { version = " 0.2.0 " , package = " amjad_os_user_std" , features = [' rustc-dep-of-std' ] }
63
63
64
64
[features ]
65
65
backtrace = [
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ fn syscall_to_io_error(e: SyscallError) -> crate::io::Error {
81
81
crate :: io:: Error :: new ( crate :: io:: ErrorKind :: InvalidInput , error_str)
82
82
}
83
83
// should never happen
84
- SyscallError :: SyscallNotFound | SyscallError :: InvalidErrorCode ( _ ) => unreachable ! ( ) ,
84
+ SyscallError :: SyscallNotFound | SyscallError :: InvalidError => unreachable ! ( ) ,
85
85
// not applicable
86
86
SyscallError :: CouldNotLoadElf
87
87
| SyscallError :: CouldNotAllocateProcess
You can’t perform that action at this time.
0 commit comments