forked from zoeyfyi/TeX-Match
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
41 lines (37 loc) · 1.03 KB
/
Cargo.toml
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
[package]
name = "hieroglyphic"
version = "2.0.0"
authors = ["FineFindus <[email protected]>"]
edition = "2021"
description = """Search through over 1000 different LaTeX symbols by sketching"""
license = "GPL-3.0"
repository = "https://github.com/FineFindus/tex-match/"
[profile.release.package."*"]
opt-level = 3
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[dependencies]
gettext-rs = { version = "0.7", features = ["gettext-system"] }
gtk = { version = "0.9", package = "gtk4", features = ["v4_14"] }
adw = { package = "libadwaita", version = "0.7", features = ["v1_6"] }
tracing = "0.1"
tracing-subscriber = "0.3"
gdk-pixbuf = "0.20"
pango = "0.20"
cairo-rs = "0.20"
itertools = "0.13"
async-channel = "2.2"
tract-onnx = "0.21.6"
base64 = "0.22.1"
phf = "0.11"
ureq = { version = "2.10.1", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
gio = { version = "0.20", features = ["v2_70"] }
[build-dependencies]
phf_codegen = "0.11"
yaml-rust2 = "0.8.1"
base64 = "0.22.1"