-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
59 lines (52 loc) · 1.43 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
[package]
name = "rusty-slider"
version = "0.24.0"
authors = ["Olle Wreede <[email protected]>"]
edition = "2021"
license = "MIT"
description = "A small tool to display markdown files as a slideshow."
repository = "https://github.com/ollej/rusty-slider"
homepage = "https://ollej.github.io/rusty-slider/"
readme = "README.md"
categories = ["command-line-utilities"]
keywords = ["markdown", "slideshow", "presentation", "graphics", "wasm"]
default-run = "rusty_slider"
[package.metadata.scripts]
build-web = "bin/build-web"
build-linux = "bin/build-linux"
build-win = "bin/build-win"
serve-web = "bin/serve-web"
build-apk = "bin/build-apk"
[dependencies]
clap = { version = "4.0.18", features = ["derive"] }
colorsys = "0.6.5"
convert_case = "0.6.0"
glob = "0.3.0"
macroquad = "0.4.13"
markdown = { git = "https://github.com/johannhof/markdown.rs" }
maud = "0.24.0"
nanoserde = "0.1.30"
quad-url = "0.1.0"
regex = "1.5.4"
strum = { version = "0.24.1", features = ["derive"] }
strum_macros = "0.24.3"
syntect = { version = "5.0.0", default-features = false, features = ["default-fancy"] }
tempfile = "3.3.0"
[profile.dev]
debug = 1 # less precise locations
# Doesn't work with android build
[profile.dev.package.'*']
debug = false # no debug symbols for deps
opt-level = 3
[profile.release]
opt-level = 'z'
lto = true
panic = 'abort'
codegen-units = 1
strip = true
[lib]
name = "rusty_slider"
path = "src/lib.rs"
[[bin]]
name = "rusty_slider"
path = "src/main.rs"