Skip to content

meta: Bump all semver-major dependencies #283

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will make it incompatible with Relay, can you check?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, I think that needs updating too. Too bad I can’t use that git ref right now until we fix the breakpad submodule :-(

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

relay already has both 0.4 and 0.5, and the parameter of symbolic-unreal is not used anywhere.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for verifying.

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