Skip to content

Commit

Permalink
meta: Bump all semver-major dependencies (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
Swatinem authored Oct 19, 2020
1 parent 390e3c7 commit b2d4794
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions symbolic-debuginfo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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" }
2 changes: 1 addition & 1 deletion symbolic-minidump/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion symbolic-sourcemap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ edition = "2018"
all-features = true

[dependencies]
sourcemap = "5.0.0"
sourcemap = "6.0.1"
4 changes: 2 additions & 2 deletions symbolic-symcache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand Down
4 changes: 2 additions & 2 deletions symbolic-unreal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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" }
2 changes: 1 addition & 1 deletion symbolic-unreal/src/container.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
}
}

Expand Down

0 comments on commit b2d4794

Please sign in to comment.