-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 806 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 806 Bytes
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
[workspace]
resolver = "2"
members = [
"diffenator3-lib",
"diffenator3-cli",
"diffenator3-web",
"diff3proof",
"kerndiffer",
"rendertest",
"ttj",
]
default-members = ["diffenator3-cli", "diff3proof"]
[workspace.dependencies]
read-fonts = { version = "0.35.0", features = [
"serde",
"experimental_traverse",
] }
skrifa = "0.37.0"
indexmap = "1.9.3"
serde_json = { version = "1.0.96", features = ["preserve_order"] }
serde = { version = "1", features = ["derive"] }
harfrust = { version = "0.3.1" }
log = "0.4.28"
shaperglot = { version = "1.1.2" }
[profile.dev]
# Rustybuzz debug-asserts that the provided script is the same as
# the text's script, *even if* you're using guess_segment_properties.
debug-assertions = false
[profile.release]
opt-level = "z"
lto = true