Spaces:
Build error
Build error
File size: 557 Bytes
8c3e275 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | [package]
name = "pageparse"
version = "0.2.0"
description = "Any handwritten page → clean structured data. On CPU. Fully offline."
authors = ["Team Centurions"]
license = "AGPL-3.0-or-later"
edition = "2021"
[build-dependencies]
tauri-build = { version = "1.5", features = [] }
[dependencies]
tauri = { version = "1.5", features = ["shell-open", "fs-all", "dialog-all", "http-all", "path-all"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[features]
default = ["custom-protocol"]
custom-protocol = ["tauri/custom-protocol"]
|