This repository has been archived by the owner on May 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
71 lines (66 loc) · 1.87 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
[workspace]
members = [
"stella2",
"stella2/meta",
"stella2_assets",
"tcw3",
"tcw3/designer",
"tcw3/designer_runtime",
"tcw3/designer/tests_impl",
"tcw3/testing",
"tcw3/pal",
"tcw3/pal/macro",
"tcw3/stvg",
"tcw3/images",
"tcw3/meta",
"harmony",
"stvg/io",
"stvg/macro",
"stvg/macro/impl",
"support/alt_fp",
"support/array_intrusive_list",
"support/as_any",
"support/atom2",
"support/boxed_slice_tools",
"support/cggeom",
"support/demotools",
"support/iterpool",
"support/leakypool",
"support/minisort",
"support/nativedispatch",
"support/neo_linked_list",
"support/rope",
"support/subscriber_list",
"support/sorted_diff",
"support/unicount",
"support/utf16count",
"res/mkmacosbundle",
"res/windres",
]
[profile.release]
debug = true
panic = "abort"
lto = true
[profile.bench]
lto = true
debug = true
[profile.dev.package]
# A software-based compositor (`swrast`) is used when other backends are not
# available for some reason. This is horrendously slow on debug builds and hurts
# developer experience. To mitigate this issue, always enable optimization for
# `tcw3_pal`. This isn't as fast as the release build due to lack of LTO, but
# at least it's usable.
tcw3_pal = { opt-level = 3 }
[patch.crates-io.winapi]
# Waiting for <https://github.com/retep998/winapi-rs/pull/599> (GDI+ support)
# to be merged
git = "https://github.com/yvt/winapi-rs.git"
rev = "a6df41df91d6b8c156cff69bede2da2196c663cb"
[patch.crates-io.rob]
# Waiting for the following PRs to be merged:
# - “Make `from_ref`, `from_raw`, and `is_owned` `const fn`”
# <https://github.com/eduardosm/rust-rob/pull/1>
# - “Implement `Send` and `Sync`”
# <https://github.com/eduardosm/rust-rob/pull/2>
git = "https://github.com/yvt/rust-rob"
rev = "c2d723c6c2672914c6d8ac9d0d3cc80b5d99cbb9"