diff --git a/CHANGELOG.md b/CHANGELOG.md index c803551..c80c99e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/). - `std::regex` library for regex matching. - `engine-override` command which can be used to change engine settings of a configuration. - `force_normal` property for ewwii windows. It allows user to create normal windows on wayland. +- Better error support by migrating to `rhai_trace` v0.3.0. ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 50e55d3..04475de 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1853,9 +1853,9 @@ dependencies = [ [[package]] name = "rhai_trace" -version = "0.2.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3b719976dd04e8f881b0637892aa5b459f47048f91b1632c6bc32b632d44367" +checksum = "90093b2d5beff618cbf5698c4952ecca7eca5c5a6d9a892c0d19d9046d8329e4" dependencies = [ "rhai", ] diff --git a/crates/rhai_impl/Cargo.toml b/crates/rhai_impl/Cargo.toml index 283526e..ee34e32 100644 --- a/crates/rhai_impl/Cargo.toml +++ b/crates/rhai_impl/Cargo.toml @@ -22,6 +22,6 @@ ahash.workspace = true nix = { workspace = true, features = ["process", "fs", "signal"] } libc.workspace = true # error handling -rhai_trace = "0.2.0" +rhai_trace = "0.3.0" codespan-reporting.workspace = true regex.workspace = true \ No newline at end of file