Skip to content

Commit

Permalink
Merge pull request #40 from mmalecot/dev
Browse files Browse the repository at this point in the history
v0.22.0
  • Loading branch information
mmalecot authored Nov 4, 2023
2 parents 4b2a97a + f5e2e2d commit e6aaae5
Show file tree
Hide file tree
Showing 32 changed files with 334 additions and 190 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Version 0.22.0 (2023-11-04)

## Internal changes

- Remove `cfb` dependency when using `reader-cfb` feature
- Remove `zip` dependency when using `reader-zip` feature

# Version 0.21.0 (2023-09-29)

## API
Expand Down
8 changes: 3 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "file-format"
version = "0.21.0"
version = "0.22.0"
authors = ["Mickaël Malécot <mickael.malecot@gmail.com>"]
edition = "2021"
description = "Crate for determining the file format of a given file or stream."
Expand All @@ -15,9 +15,7 @@ exclude = ["/.github", "/examples", "/fixtures", "/tests", ".gitattributes", ".g
rust-version = "1.60.0"

[dependencies]
cfb = { version = "0.8", optional = true }
serde = { version = "1.0", optional = true, features = ["derive"], default-features = false }
zip = { version = "0.6", optional = true, features = ["deflate"], default-features = false }

[features]
## Ecosystem features
Expand All @@ -37,12 +35,12 @@ reader = [
"reader-zip"
]
reader-asf = []
reader-cfb = ["dep:cfb"]
reader-cfb = []
reader-ebml = []
reader-exe = []
reader-mp4 = []
reader-pdf = []
reader-rm = []
reader-txt = []
reader-xml = []
reader-zip = ["dep:zip"]
reader-zip = []
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
file-format = "0.21"
file-format = "0.22"
```

## Supported file formats
Expand Down
Binary file modified fixtures/application/sample.mxl
Binary file not shown.
Binary file modified fixtures/book/sample.epub
Binary file not shown.
Binary file modified fixtures/database/sample.odb
Binary file not shown.
Binary file modified fixtures/document/sample.idml
Binary file not shown.
Binary file modified fixtures/document/sample.odf
Binary file not shown.
Binary file modified fixtures/document/sample.odg
Binary file not shown.
Binary file modified fixtures/document/sample.odm
Binary file not shown.
Binary file modified fixtures/document/sample.odp
Binary file not shown.
Binary file modified fixtures/document/sample.ods
Binary file not shown.
Binary file modified fixtures/document/sample.odt
Binary file not shown.
Binary file modified fixtures/document/sample.otf
Binary file not shown.
Binary file modified fixtures/document/sample.otg
Binary file not shown.
Binary file modified fixtures/document/sample.otm
Binary file not shown.
Binary file modified fixtures/document/sample.otp
Binary file not shown.
Binary file modified fixtures/document/sample.ots
Binary file not shown.
Binary file modified fixtures/document/sample.ott
Binary file not shown.
Binary file modified fixtures/document/sample.sgw
Binary file not shown.
Binary file modified fixtures/document/sample.stc
Binary file not shown.
Binary file modified fixtures/document/sample.std
Binary file not shown.
Binary file modified fixtures/document/sample.sti
Binary file not shown.
Binary file modified fixtures/document/sample.stw
Binary file not shown.
Binary file modified fixtures/document/sample.sxc
Binary file not shown.
Binary file modified fixtures/document/sample.sxd
Binary file not shown.
Binary file modified fixtures/document/sample.sxi
Binary file not shown.
Binary file modified fixtures/document/sample.sxm
Binary file not shown.
Binary file modified fixtures/document/sample.sxw
Binary file not shown.
Binary file modified fixtures/image/sample.ora
Binary file not shown.
Loading

0 comments on commit e6aaae5

Please sign in to comment.