diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2021-11-04 16:44:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-04 16:44:34 +0100 |
commit | 44511e4f330e2d7099a16ed836629fa73dde9831 (patch) | |
tree | 7be25493513d50314ab71452693b317ef4194a49 /cli | |
parent | efe956b4fd51818e3a982b9d7c4111c408d07291 (diff) |
feat(runtime): give OS errors .code attributes (#12591)
This adds `.code` attributes to errors returned by the op-layer, facilitating classifying OS errors and helping node-compat.
Similar to Node, these `.code` attributes are stringified names of unix ERRNOs, the mapping tables are generated by [tools/codegen_error_codes.js](https://gist.github.com/AaronO/dfa1106cc6c7e2a6ebe4dba9d5248858) and derived from libuv and rust's std internals
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 2e180a494..32527180b 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -62,7 +62,7 @@ http = "0.2.4" import_map = "0.3.3" jsonc-parser = { version = "0.17.0", features = ["serde"] } lazy_static = "1.4.0" -libc = "0.2.101" +libc = "0.2.106" log = { version = "0.4.14", features = ["serde"] } lspower = "1.1.0" notify = "5.0.0-pre.12" |