pdftract/xtask/Cargo.toml
jedarden 7788719e0a docs(bf-ad2pp): analyze unmapped glyph fixture requirements
- Read design documents notes/bf-68f9i-design.md and notes/bf-68f9i-glyphs.md
- Identified 7 unmapped glyphs across 4 failure categories
- Identified 3 mapped AGL glyphs for comparison
- Verified existing generator implementation (gen_unmapped_comprehensive.rs)
- Confirmed fixture files exist and are correctly structured
- Documented implementation analysis in notes/bf-ad2pp.md

Closes bf-ad2pp
2026-07-03 19:17:02 -04:00

65 lines
1.3 KiB
TOML

[workspace]
[package]
name = "xtask"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
[[bin]]
name = "xtask"
path = "src/main.rs"
[[bin]]
name = "gen_schema"
path = "src/bin/gen_schema.rs"
[[bin]]
name = "gen_cli_reference"
path = "src/bin/gen_cli_reference.rs"
[[bin]]
name = "migrate_schema"
path = "src/bin/migrate_schema.rs"
[[bin]]
name = "gen_scanned_fixtures"
path = "src/bin/gen_scanned_fixtures.rs"
[[bin]]
name = "gen_form_fixtures"
path = "src/bin/gen_form_fixtures.rs"
[[bin]]
name = "gen_encoding_fixtures"
path = "src/bin/gen_encoding_fixtures.rs"
[[bin]]
name = "gen_unmapped_fixtures"
path = "src/bin/gen_unmapped_fixtures.rs"
[[bin]]
name = "debug_pdf"
path = "src/bin/debug_pdf.rs"
[lib]
name = "pdftract_schema_migrate"
path = "src/lib.rs"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
glob = "0.3"
humantime = "2.1"
lopdf = "0.34"
schemars = "1.2"
pdftract-core = { path = "../crates/pdftract-core", features = ["schemars"] }
pdftract-cli = { path = "../crates/pdftract-cli", default-features = false, features = ["grep"] }
fontdue = "0.9"
clap = { version = "4.5", features = ["derive"] }
clap-markdown = "0.1"
anyhow = "1.0"
printpdf = "0.9"
encoding_rs = "0.8"