- Fix bench-matrix dependencies: [setup] → [setup, build-matrix] (bench-matrix consumes build-matrix artifacts, must declare the dep) - Fix 8 image refs: pdftract-test-glibc:1.78 → ronaldraygun/pdftract-test-glibc:1.78 (unqualified fails ImagePullBackOff) - Add crates/pdftract-cer-diff to workspace members in Cargo.toml (CI build-cer-diff step references this crate; missing caused cargo error) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
28 lines
825 B
TOML
28 lines
825 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["crates/pdftract-core", "crates/pdftract-cli", "crates/pdftract-py", "crates/pdftract-libpdftract", "crates/pdftract-cer-diff"]
|
|
exclude = ["tests/fixtures/generate_lzw_fixtures.rs"]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.78"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/jedarden/pdftract"
|
|
authors = ["Jed Cabanero <me@jedcabanero.com>"]
|
|
homepage = "https://github.com/jedarden/pdftract"
|
|
documentation = "https://docs.rs/pdftract-core"
|
|
|
|
[workspace.dependencies]
|
|
# Dependencies shared across workspace crates
|
|
anyhow = "1.0"
|
|
base64 = "0.22"
|
|
flate2 = "1.0"
|
|
lzw = "0.10"
|
|
memchr = "2.7"
|
|
secrecy = "0.10"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
thiserror = "1.0"
|
|
tracing = "0.1"
|
|
unicode-normalization = "0.1"
|
|
unicode-bidi = "0.3"
|