This repository has been archived by the owner on Oct 10, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
106 lines (97 loc) · 3.74 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
# This file is part of Dokkoo.
#
# Dokkoo is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Dokkoo is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Dokkoo. If not, see <https://www.gnu.org/licenses/>.
[package]
name = "dokkoo"
version = "0.5.0"
authors = ["Emil Sayahi <[email protected]>"]
edition = "2021"
categories = ["command-line-utilities", "text-processing", "web-programming"]
exclude = ["/.github/**/*", "/branding/**/*", "/.gitignore", "/.whitesource", "renovate.json", "/azure-pipelines.yml", "/snapcraft.yaml", "/rust-toolchain"]
license = "AGPL-3.0-or-later"
description = "Mokk (Macro Output Key Kit) implementation written in Rust."
repository = "https://github.com/Dirout/dokkoo"
homepage = "https://github.com/Dirout/dokkoo"
readme = "README"
[lib]
name = "dokkoo"
path = "src/lib.rs"
crate-type=["rlib", "cdylib", "staticlib"]
[[bin]]
name = "dokkoo"
path = "src/main.rs"
doc = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-files = "0.6.5"
actix-http = "3.7.0"
actix-service = "2.0.2"
actix-web = "4.7.0"
ahash = { version = "0.8.11", features = ["std", "serde", "runtime-rng"] }
chrono = { version = "0.4.38", features = ["alloc", "std", "clock", "serde", "unstable-locales"] }
clap = { version = "4.5.6", features = ["cargo", "suggestions", "color", "wrap_help", "unicode"] }
comrak = { version = "0.19.0", features = ["syntect", "shortcodes"] }
derive_more = { version = "0.99.17", features = ["default", "convert_case", "generate-parsing-rs", "testing-helpers", "nightly", "peg", "rustc_version" ] }
futures = "0.3.30"
glob = "0.3.1"
html-minifier = "4.0.0"
latex2mathml = "0.2.3"
lazy_static = "1.4.0"
liquid = "0.26.6"
liquid-core = "0.26.6"
liquid-lib = { version = "0.26.6", features = ["all", "stdlib", "jekyll", "shopify", "extra"] }
miette = { version = "5.10.0", features = ["fancy"] }
mimalloc = { version = "0.1.42", default-features = false }
notify = "6.1.1"
path-clean = "1.0.1"
pathdiff = "0.2.1"
relative-path = "1.9.3"
serde = "1.0.203"
serde_yaml = "0.9.34"
sys-locale = "0.3.1"
ticky = { version = "1.0.2", features = ["stdtime"] }
tokio = { version = "1.38.0", features = ["full"] }
wild = "2.2.1"
[profile.release]
codegen-units = 1
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = false
lto = true
incremental = false
rpath = false
strip = "symbols"
[profile.release.build-override]
opt-level = 3
codegen-units = 1
[package.metadata.deb]
section = "utility"
priority = "optional"
assets = [
["target/x86_64-unknown-linux-gnu/release/dokkoo", "usr/bin/", "755"],
["target/x86_64-unknown-linux-gnu/release/libdokkoo.so", "usr/lib/", "644"],
["README", "usr/share/doc/dokkoo/README", "644"],
["COPYING", "usr/share/doc/dokkoo/COPYING", "644"],
]
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/dokkoo", dest = "/usr/bin/dokkoo", mode = "755" },
{ source = "target/release/libdokkoo.so", dest = "/usr/lib/libdokkoo.so", mode = "755" },
{ source = "target/release/libdokkoo.a", dest = "/usr/lib/libdokkoo.a", mode = "755" },
{ source = "README", dest = "/usr/share/doc/dokkoo/README", mode = "644" },
{ source = "COPYING", dest = "/usr/share/doc/dokkoo/COPYING", mode = "644" },
]
[registries.crates-io]
protocol = "sparse"