-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
executable file
·115 lines (105 loc) · 3.49 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[package]
name = "dgb"
version = "1.0.0"
edition = "2021"
description = "Tool zur Abdigitalisierung von Grundbuchblättern"
authors = ["Felix Schütt <[email protected]>"]
license = "GPL-3.0"
build = "build.rs"
readme = "README.md"
[dependencies]
urlencoding = "2.1.2"
serde = "1"
serde_derive = "1"
itertools = "0.10.5"
lopdf = { version = "0.26.0", features = ["nom_parser"] }
serde_json = "1"
base64 = "0.21.0"
regex = "1"
lazy_static = "1"
image = { version = "0.24.6", features = ["pnm", "bmp"] }
rayon = "1.7.0"
kuchiki = "0.8.1"
tinyfiledialogs = { git = "https://github.com/projekt-dgb/tinyfiledialogs-rs", rev = "aad206425d783c3ec82e32f0cbac64f84e03ad90" }
chrono = { version = "0.4.19", default-features = false, features = ["alloc", "std", "clock", "serde"] }
toml = "0.5"
dirs = "4.0"
num_cpus = "1.0"
printpdf = { version = "0.5.2", features = ["svg"] }
qrcode = "0.12.0"
reqwest = { version = "0.11", features = ["blocking", "json", "rustls-tls"] }
sequoia-openpgp = { version = "1.8.0", default-features = false, features = ["crypto-rust", "allow-experimental-crypto", "allow-variable-time-crypto", "compression"] }
git2 = { version = "0.14.4", default-features = false }
rand = "0.8.5"
hyphenation = { version = "0.8.4", features = ["embed_all", "nfc"] }
textwrap = { version = "0.15.0", features = ["smawk", "hyphenation"] }
zip = { version = "0.6.2", default-features = false, features = ["deflate", "bzip2", "zstd", "time"] }
flate2 = "1.0.24"
tar = "0.4.38"
sha2 = "0.10.6"
euclid = "0.22.9"
hex = "0.4.3"
url_open = "0.0.2"
url = "2.3.1"
html-escape = "0.2.13"
gbx = "1.0.1"
similar = "2.2.1"
wry = { version = "0.28.0", features = ["devtools"] }
[features]
default = ["tesseract"]
tesseract = ["tesseract-static", "tesseract-static-build"]
[dependencies.tesseract-static]
git = "https://github.com/fschutt/tesseract-static-rs"
rev = "2027ec3630d51b4c2b04893a908a625da7f011f6"
optional = true
[build-dependencies.tesseract-static-build]
git = "https://github.com/fschutt/tesseract-static-rs"
rev = "2027ec3630d51b4c2b04893a908a625da7f011f6"
optional = true
[dependencies.wasmer]
git = "https://github.com/wasmerio/wasmer"
rev = "05d74ea3fbabc0adcb0098d4896a623cc5a34ed5"
[dependencies.wasmer_wasi]
git = "https://github.com/wasmerio/wasmer"
rev = "05d74ea3fbabc0adcb0098d4896a623cc5a34ed5"
package = "wasmer-wasi"
[dependencies.wasmer_vfs]
git = "https://github.com/wasmerio/wasmer"
rev = "05d74ea3fbabc0adcb0098d4896a623cc5a34ed5"
package = "wasmer-vfs"
[profile.release]
opt-level = 3
lto = false
panic = "abort"
codegen-units = 1
debug = false
debug-assertions = false
overflow-checks = false
incremental = false
rpath = false
strip = false
[package.metadata.deb]
maintainer = "Felix Schütt <[email protected]>"
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
["target/release/dgb", "usr/local/bin/", "755"],
["scripts/linux/dgb.desktop", "usr/local/share/applications/", "755"],
["scripts/linux/dgb.xpm", "usr/share/pixmaps/", "755"],
["README.md", "usr/local/share/doc/dgb/README", "644"],
]
[package.metadata.bundle]
name = "Digitales Grundbuch"
identifier = "eu.grundbuch.dgb"
# icon = ["32x32.png", "128x128.png", "[email protected]"]
version = "1.0.0"
resources = ["assets", "images/**/*.png", "secrets/public_key.txt"]
copyright = "GPL-3.0 Felix Schütt 2022"
category = "Developer Tool"
short_description = "Digitales Grundbuch"
long_description = """
Anwendung zum Bearbeiten und Digitalisieren vom digitalen Grundbuch
"""
deb_depends = ["$auto"]
osx_frameworks = []