diff --git a/symbolic-debuginfo/Cargo.toml b/symbolic-debuginfo/Cargo.toml index 1d5d4973c..0e366327b 100644 --- a/symbolic-debuginfo/Cargo.toml +++ b/symbolic-debuginfo/Cargo.toml @@ -26,12 +26,12 @@ all-features = true dmsort = "1.0.0" fallible-iterator = "0.2.0" flate2 = { version = "1.0.13", features = ["rust_backend"], default-features = false } -gimli = { version = "0.21.0", features = ["read", "std"], default-features = false } +gimli = { version = "0.22.0", features = ["read", "std"], default-features = false } goblin = "0.2.3" lazycell = "1.2.1" lazy_static = "1.4.0" pdb = "0.6.0" -parking_lot = "0.10.0" +parking_lot = "0.11.0" pest = "2.1.1" pest_derive = "2.1.0" regex = "1.3.5" @@ -43,5 +43,5 @@ thiserror = "1.0.20" zip = "0.5.2" [dev-dependencies] -insta = "0.15.0" +insta = "1.1.0" symbolic-testutils = { path = "../symbolic-testutils" } diff --git a/symbolic-minidump/Cargo.toml b/symbolic-minidump/Cargo.toml index 968935558..011eeaf91 100644 --- a/symbolic-minidump/Cargo.toml +++ b/symbolic-minidump/Cargo.toml @@ -41,5 +41,5 @@ thiserror = "1.0.20" cc = { version = "1.0.50", features = ["parallel"] } [dev-dependencies] -insta = "0.15.0" +insta = "1.1.0" symbolic-testutils = { path = "../symbolic-testutils" } diff --git a/symbolic-sourcemap/Cargo.toml b/symbolic-sourcemap/Cargo.toml index d805bb15f..ea062e190 100644 --- a/symbolic-sourcemap/Cargo.toml +++ b/symbolic-sourcemap/Cargo.toml @@ -19,4 +19,4 @@ edition = "2018" all-features = true [dependencies] -sourcemap = "5.0.0" +sourcemap = "6.0.1" diff --git a/symbolic-symcache/Cargo.toml b/symbolic-symcache/Cargo.toml index 9b871da67..b2bf61323 100644 --- a/symbolic-symcache/Cargo.toml +++ b/symbolic-symcache/Cargo.toml @@ -25,13 +25,13 @@ all-features = true [dependencies] dmsort = "1.0.0" fnv = "1.0.6" -num = "0.2.1" +num = "0.3.0" symbolic-common = { version = "7.5.0", path = "../symbolic-common" } symbolic-debuginfo = { version = "7.5.0", path = "../symbolic-debuginfo" } thiserror = "1.0.20" [dev-dependencies] -insta = "0.15.0" +insta = "1.1.0" criterion = "0.3.1" symbolic-testutils = { path = "../symbolic-testutils" } diff --git a/symbolic-unreal/Cargo.toml b/symbolic-unreal/Cargo.toml index 7b9caa23e..6de6f07c6 100644 --- a/symbolic-unreal/Cargo.toml +++ b/symbolic-unreal/Cargo.toml @@ -27,7 +27,7 @@ serde = ["serde_", "chrono/serde"] [dependencies] anylog = "0.5.0" -bytes = "0.4.12" +bytes = "0.5.6" chrono = "0.4.7" elementtree = "0.5.0" lazy_static = "1.4.0" @@ -38,5 +38,5 @@ serde_ = { package = "serde", version = "1.0.94", optional = true, features = [" thiserror = "1.0.20" [dev-dependencies] -insta = "0.15.0" +insta = "1.1.0" symbolic-testutils = { path = "../symbolic-testutils" } diff --git a/symbolic-unreal/src/container.rs b/symbolic-unreal/src/container.rs index 1910cbee2..ccc5c4104 100644 --- a/symbolic-unreal/src/container.rs +++ b/symbolic-unreal/src/container.rs @@ -275,7 +275,7 @@ impl Unreal4File { Unreal4File { index: meta.index, file_name: meta.file_name.as_str().to_owned(), - bytes: bytes.slice(meta.offset, meta.offset + meta.len), + bytes: bytes.slice(meta.offset..meta.offset + meta.len), } }