-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (52 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
58 lines (52 loc) · 1.22 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
[package]
name = "tex-match"
version = "1.2.0"
authors = ["Zoey Sheffield <me@zoey.fyi>"]
edition = "2018"
description = """Search through over 1000 different LaTeX symbols by sketching"""
license = "MIT"
homepage = "https://tex-match.zoey.fyi"
repository = "https://github.com/zoeyfyi/tex-match/"
keywords = ["gtk", "computer-vision", "linux", "latex", "tex"]
categories = ["computer-vision"]
exclude = [
"submodules/flatpak-builder-tools",
"submodules/gvsbuild",
"submodules/Windows-10-Dark",
"flatpak",
"snap",
"wix",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# GTK
glib = "0.10"
gdk = "0.13"
gdk-pixbuf = "0.9"
pango = "0.9"
cairo-rs = "0.9"
# GTK utils
gladis = "0.4.1"
gladis_proc_macro = "0.4.1"
shrinkwraprs = "0.3.0"
# Logging
log = "0.4.14"
env_logger = "0.8.3"
# TeX classification
detexify = "0.4.0"
# Misc utils
dirty2 = "0.1.0"
simple-error = "0.2"
itertools = "0.10.0"
base64 = "0.13.0"
single_value_channel = "1.2.2"
[dependencies.gtk]
version = "0.9"
features = ["v3_16"]
[dependencies.gio]
version = "0.9"
features = ["v2_44"]
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[build-dependencies]
fs_extra = "1.2.0"