Skip to content

Commit

Permalink
Update object to 0.24
Browse files Browse the repository at this point in the history
  • Loading branch information
philipc committed May 1, 2021
1 parent 8d6f240 commit bf0323a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest"]
rust_channel: ["stable", "beta", "nightly", "1.38.0"]
rust_channel: ["stable", "beta", "nightly", "1.42.0"]
include:
- rust_channel: "stable"
os: "macOS-latest"
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ crossbeam = "0.8"
getopts = "0.2"
memmap = "0.7"
num_cpus = "1"
object = "0.22"
object = { version = "0.24", features = ["wasm"] }
rayon = "1.0"
regex = "1"
test-assembler = "0.1.3"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Add this to your `Cargo.toml`:
gimli = "0.23.0"
```

The minimum supported Rust version is 1.38.0.
The minimum supported Rust version is 1.42.0.

## Documentation

Expand Down
2 changes: 1 addition & 1 deletion examples/dwarfdump.rs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ fn add_relocations(
}
}
}
object::RelocationTarget::Section(_section_idx) => {}
object::RelocationTarget::Section(_) | object::RelocationTarget::Absolute => {}
}
if relocations.insert(offset, relocation).is_some() {
eprintln!(
Expand Down

0 comments on commit bf0323a

Please sign in to comment.