-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (65 loc) · 2.23 KB
/
Cargo.toml
File metadata and controls
75 lines (65 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# SPDX-License-Identifier: PMPL-1.0-or-later
# Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) <j.d.a.jewell@open.ac.uk>
[workspace]
resolver = "2"
members = [
"crates/presswerk-core",
"crates/presswerk-security",
"crates/presswerk-document",
"crates/presswerk-print",
"crates/presswerk-bridge",
"crates/presswerk-app",
]
[workspace.package]
version = "0.3.0"
edition = "2024"
authors = ["Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>"]
license = "PMPL-1.0-or-later"
repository = "https://github.com/hyperpolymath/presswerk"
homepage = "https://github.com/hyperpolymath/presswerk"
description = "Print Doctor (Presswerk engine) — high-assurance local print router/server with IPP, mDNS, document scanning, and Idris2 ABI verification"
keywords = ["ipp", "printing", "mdns", "mobile", "formal-verification"]
categories = ["network-programming", "multimedia::images"]
rust-version = "1.85"
[workspace.dependencies]
# Core
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
tokio = { version = "1", features = ["full"] }
uuid = { version = "1.11", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Print protocol
ipp = { version = "5", features = ["async"] }
mdns-sd = "0.13"
# Document processing
lopdf = "0.38"
printpdf = "0.8"
image = "0.25"
imageproc = "0.25"
# OCR (optional — behind "ocr" feature gate)
ocrs = "0.12"
rten = "0.24"
rten-imageproc = "0.24"
rten-tensor = "0.24"
# Security
age = "0.11"
ring = "0.17"
rustls = { version = "0.23", default-features = false, features = ["ring", "std", "tls12"] }
rusqlite = { version = "0.32", features = ["bundled"] }
sha2 = "0.10"
hex = "0.4"
# UI
dioxus = { version = "0.7", features = ["desktop", "router", "html", "hooks", "signals"] }
rfd = "0.17"
# Testing
tempfile = "3"
criterion = { version = "0.5", features = ["html_reports"] }
# Internal crates
presswerk-core = { path = "crates/presswerk-core" }
presswerk-security = { path = "crates/presswerk-security" }
presswerk-document = { path = "crates/presswerk-document" }
presswerk-print = { path = "crates/presswerk-print" }
presswerk-bridge = { path = "crates/presswerk-bridge" }