Skip to content

Commit

Permalink
Update dependencies (#569)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipc authored Aug 12, 2023
1 parent 2692d77 commit 61c8f2d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
with:
submodules: true
- name: Install rust
run: rustup update 1.64.0 && rustup default 1.64.0
run: rustup update 1.65.0 && rustup default 1.65.0
- name: Test
run: cargo test --verbose --features all

Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ features = ['doc']
crc32fast = { version = "1.2", default-features = false, optional = true }
flate2 = { version = "1", optional = true }
indexmap = { version = "2.0", default-features = false, optional = true }
wasmparser = { version = "0.102.0", optional = true }
wasmparser = { version = "0.110.0", optional = true }
memchr = { version = "2.4.1", default-features = false }
hashbrown = { version = "0.14.0", features = ["ahash"], default-features = false, optional = true }
ruzstd = { version = "0.3.1", optional = true }
ruzstd = { version = "0.4.0", optional = true }

# Internal feature, only used when building as part of libstd, not part of the
# stable interface of this crate.
Expand All @@ -35,9 +35,9 @@ read_core = []
# Read support for most file formats (including unaligned files).
read = ["read_core", "archive", "coff", "elf", "macho", "pe", "xcoff", "unaligned"]
# Core write support. You will need to enable some file formats too.
write_core = ["crc32fast", "dep:indexmap", "dep:hashbrown"]
write_core = ["dep:crc32fast", "dep:indexmap", "dep:hashbrown"]
# Core write support with libstd features. You will need to enable some file formats too.
write_std = ["write_core", "std", "indexmap?/std", "crc32fast/std"]
write_std = ["write_core", "std", "indexmap?/std", "crc32fast?/std"]
# Write support for all file formats, including libstd features.
write = ["write_std", "coff", "elf", "macho", "pe", "xcoff"]

Expand All @@ -49,7 +49,7 @@ write = ["write_std", "coff", "elf", "macho", "pe", "xcoff"]
std = ["memchr/std"]
# Enable decompression of compressed sections.
# This feature is not required if you want to do your own decompression.
compression = ["flate2", "ruzstd", "std"]
compression = ["dep:flate2", "dep:ruzstd", "std"]
# Treat all types as unaligned.
# Normally types use the alignment required by the specifications, but
# sometimes files do not strictly follow the specifications.
Expand All @@ -64,7 +64,7 @@ coff = []
elf = []
macho = []
pe = ["coff"]
wasm = ["wasmparser"]
wasm = ["dep:wasmparser"]
xcoff = []

#=======================================
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Changes to MSRV are considered breaking changes. We are conservative about chang
but sometimes are required to due to dependencies. The MSRV is:

* 1.60.0 for the `read` feature and its dependencies.
* 1.64.0 for the `write` feature and its dependencies.
* 1.65.0 for other features.

## License

Expand Down
2 changes: 1 addition & 1 deletion crates/examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.0.0"
edition = "2018"

[dependencies]
memmap2 = "0.5"
memmap2 = "0.7.1"
object = { path = "../..", default-features = false }

[dev-dependencies]
Expand Down

0 comments on commit 61c8f2d

Please sign in to comment.