-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed a crash when adding pages from another QPdf object, closes #10
- Loading branch information
Showing
5 changed files
with
47 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
[workspace] | ||
resolver = "2" | ||
members = ["qpdf-sys", "qpdf-rs"] | ||
|
||
[workspace.package] | ||
version = "0.1.7" | ||
authors = ["Dmitry Pankratov <[email protected]>"] | ||
edition = "2021" | ||
repository = "https://github.com/ancwrd1/qpdf-rs" | ||
documentation = "https://docs.rs/qpdf" | ||
readme = "README.md" | ||
keywords = ["PDF", "QPDF"] | ||
license = "MIT/Apache-2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "qpdf" | ||
version = "0.1.6" | ||
authors = ["Dmitry Pankratov <[email protected]>"] | ||
description = "Rust bindings to QPDF C++ library" | ||
license = "MIT/Apache-2.0" | ||
repository = "https://github.com/ancwrd1/qpdf-rs" | ||
documentation = "https://docs.rs/qpdf" | ||
readme = "README.md" | ||
keywords = ["PDF", "QPDF"] | ||
edition = "2021" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
repository.workspace = true | ||
documentation.workspace = true | ||
readme.workspace = true | ||
keywords.workspace = true | ||
license.workspace = true | ||
|
||
[dependencies] | ||
qpdf-sys = { path = "../qpdf-sys", version = "0.1" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "qpdf-sys" | ||
version = "0.1.6" | ||
authors = ["Dmitry Pankratov <[email protected]>"] | ||
description = "Rust bindings to QPDF C++ library via FFI and bindgen" | ||
license = "MIT/Apache-2.0" | ||
repository = "https://github.com/ancwrd1/qpdf-rs" | ||
documentation = "https://docs.rs/qpdf" | ||
readme = "README.md" | ||
keywords = ["PDF", "QPDF"] | ||
edition = "2021" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
repository.workspace = true | ||
documentation.workspace = true | ||
readme.workspace = true | ||
keywords.workspace = true | ||
license.workspace = true | ||
exclude = [ | ||
'qpdf/qpdf/*', | ||
'qpdf/appimage/*', | ||
|