feat: even better err support with rhai_trace v3

This commit is contained in:
Byson94
2025-09-28 18:29:36 +05:30
parent eb73c5b08f
commit 972a5bb357
3 changed files with 4 additions and 3 deletions

View File

@@ -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

4
Cargo.lock generated
View File

@@ -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",
]

View File

@@ -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