-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
86 lines (68 loc) · 1.91 KB
/
Cargo.toml
File metadata and controls
86 lines (68 loc) · 1.91 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
76
77
78
79
80
81
82
83
84
85
86
# SPDX-License-Identifier: PMPL-1.0-or-later
#
# Formatrix Docs - Cross-platform document editor with format tabs
# https://github.com/hyperpolymath/formatrix-docs
[workspace]
resolver = "2"
members = [
"crates/formatrix-core",
"crates/formatrix-gui",
"crates/formatrix-db",
"crates/formatrix-pipeline",
"crates/formatrix-bridges",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>"]
license = "PMPL-1.0-or-later"
repository = "https://github.com/hyperpolymath/formatrix-docs"
keywords = ["document", "editor", "markdown", "asciidoc", "typst"]
categories = ["text-processing", "gui"]
[workspace.dependencies]
# Format parsers
comrak = { version = "0.29", default-features = false, features = ["syntect"] }
jotdown = "0.7"
orgize = { version = "0.9", features = ["chrono"] }
rst_parser = "0.4"
document_tree = "0.4"
typst-syntax = "0.12"
asciidoc-parser = "0.14"
# Database
arangors = "0.6"
# Pipeline
nickel-lang-core = "0.10"
# External tools
tesseract-rs = "0.3"
vosk = "0.3"
# GUI framework (Gossamer — path dependency, not published)
# gossamer-rs resolved via crate-level path dep
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Async runtime (retained for non-GUI crates)
tokio = { version = "1.42", features = ["rt-multi-thread", "macros", "fs", "io-util"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Utilities
unicode-segmentation = "1.11"
# HTTP client (for bridges)
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
# Async trait (for KnowledgeStore)
async-trait = "0.1"
# URL encoding
urlencoding = "2.1"
# File watching
notify = "7.0"
# Base64
base64 = "0.22"
[profile.release]
lto = true
codegen-units = 1
strip = true
opt-level = "z"