pdftract/xtask/Cargo.toml
jedarden 62a36ea756 docs(pdftract-3eohy): add rustdoc examples to Glyph and Span types
- Add worked example to Glyph struct showing all 11 fields
- Add worked example to Span struct showing all 10 fields
- Examples use rust,no_run for internal dependencies
- cargo doc passes with docs.rs feature set
- Verification note added at notes/pdftract-3eohy.md

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-01 01:16:24 -04:00

34 lines
647 B
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"
[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"] }
fontdue = "0.9"
clap = { version = "4.5", features = ["derive"] }
clap-markdown = "0.1"
anyhow = "1.0"