-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
67 lines (60 loc) · 1.78 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
[package]
name = "cartunes"
version = "0.3.0"
description = "Simple comparison app for iRacing car setups."
authors = ["Jay Oster <[email protected]>"]
homepage = "https://github.com/parasyte/cartunes"
repository = "https://github.com/parasyte/cartunes"
edition = "2021"
readme = "README.md"
license = "MIT"
[features]
default = ["optimize"]
optimize = ["log/release_max_level_warn"]
[dependencies]
copypasta = "0.7"
directories = "4.0"
egui = { version = "0.16", default-features = false, features = ["single_threaded"] }
egui_wgpu_backend = "0.16"
egui-winit = "0.16"
encoding_rs = "0.8"
env_logger = { version = "0.9", default-features = false, features = ["atty", "humantime", "termcolor"] }
epaint = { version = "0.16", default-features = false, features = ["single_threaded"] }
font-loader = "0.11"
human-sort = "0.2"
hotwatch = "0.4"
kuchiki = "0.8"
log = "0.4"
native-tls = "0.2"
ordered-multimap = "0.4"
patricia_tree = "0.3"
pollster = "0.2"
raw-window-handle = "0.4"
rfd = "0.6"
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"
toml_edit = "0.13"
unicode-segmentation = "1.7"
ureq = { version = "2.3", default-features = false, features = ["json", "native-tls"] }
walkdir = "2.3"
webbrowser = "0.5"
wgpu = "0.12"
winit = "0.26"
winit_input_helper = "0.11"
# Disable IDNA to reduce binary size by ~235 KB
[dependencies.url]
git = "https://github.com/parasyte/rust-url.git"
rev = "4fce73cfde478ea1c5c8132ee1614ee741e49987"
default-features = false
features = ["disable_idna"]
[target.'cfg(windows)'.build-dependencies]
embed-resource = "1.6"
[dev-dependencies]
tempfile = "3.2"
[profile.release]
codegen-units = 1
lto = true
panic = "abort"
[patch.crates-io]
url = { git = "https://github.com/parasyte/rust-url.git", rev = "4fce73cfde478ea1c5c8132ee1614ee741e49987" }