-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
119 lines (109 loc) · 2.5 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
116
117
118
119
[package]
name = "annelid"
version = "0.1.0"
edition = "2021"
description = "A speedrun timer"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tungstenite = "0"
livesplit-core = { git = "https://github.com/LiveSplit/livesplit-core", features = ["software-rendering", "font-loading"] }
livesplit-hotkey = { git = "https://github.com/LiveSplit/livesplit-core" }
epaint = "0.29"
eframe = { version = "0.29", features = ["glow"] }
egui = { version = "0.29", features = ["serde"] }
egui_glow = "0.29"
lazy_static = "1"
strum = "0"
strum_macros = "0"
time = "0"
parking_lot = "*"
rfd = "0"
directories = "5"
roxmltree = "0"
clap = { version = "4", features = ["derive"] }
toml = "0"
serde_derive = "1"
glow = "0.14"
bytemuck = { version = "*", features = ["derive"] }
memoffset = "*"
thread-priority = "1"
anyhow = "1.0.93"
# Remember to test with --release
[profile.dev]
opt-level = 3
debug = false
[profile.release]
# Turn off strip and turn on debug when using flamegraph
strip = true
#debug = true
lto = true
codegen-units = 1
# Enable this to make even smaller binaries
#panic = abort
[package.metadata.bundle]
name = "Annelid"
identifier = "annelid"
copyright = "Copyright (c) Jason Dagit 2023. GPL 3."
short_description = "A speedrun timer."
long_description = """
A speedrun timer with autosplitter capabilities for USB2SNES.
"""
[package.metadata.appimage]
auto_link = true
# https://github.com/AppImage/pkg2appimage/blob/master/excludelist
auto_link_exclude_list = [
"libc.so*",
"libdl.so*",
"libpthread.so*",
"ld-linux.so*",
"ld-linux-x86-64.so*",
"libanl.so*",
"libBrokenLocale.so*",
"libcidn.so*",
"libm.so*",
"libmvec.so*",
"libnss_compat.so*",
"libnss_dns.so*",
"libnss_files.so*",
"libnss_hesiod.so*",
"libnss_nisplus.so*",
"libnss_nis.so*",
"libresolv.so*",
"librt.so*",
"libthread_db.so*",
"libutil.so*",
"libstdc++.so*",
"libGL.so*",
"libEGL.so*",
"libGLdispatch.so*",
"libGLX.so*",
"libOpenGL.so*",
"libdrm.so*",
"libglapi.so*",
"libgbm.so*",
"libxcb.so*",
"libX11.so*",
"libasound.so*",
"libfontconfig.so*",
"libthai.so*",
# "libfreetype.so*",
# "libharfbuzz.so*",
"libcom_err.so*",
"libexpat.so*",
"libgcc_s.so*",
"libgpg-error.so*",
"libICE.so*",
"libSM.so*",
"libusb-1.0.so*",
"libuuid.so*",
"libz.so*",
"libgpg-error.so*",
"libjack.so*",
]
[[bin]]
name = "annelid"
path = "src/main.rs"
test = false
doc = false