port QuadTree to rust

This commit is contained in:
Jacob Lifshay 2026-01-01 08:38:01 -08:00
parent da339ce00a
commit 944ae4bf41
Signed by: programmerjake
SSH key fingerprint: SHA256:HnFTLGpSm4Q4Fj502oCFisjZSoakwEuTsJJMSke63RQ
6 changed files with 1563 additions and 0 deletions

16
Cargo.toml Normal file
View file

@ -0,0 +1,16 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
# See Notices.txt for copyright information
[package]
name = "parse_powerisa_pdf"
version = "0.1.0"
license = "LGPL-3.0-or-later"
edition = "2024"
repository = ""
keywords = []
categories = []
rust-version = "1.89.0"
[dependencies]
libm = "0.2.15"
mupdf = { version = "0.5.0", default-features = false }
quick-xml = "0.38.4"