-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
55 lines (48 loc) · 1.35 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
[package]
name = "norad"
version = "0.14.2"
authors = ["Colin Rofls <[email protected]>", "Nikolaus Waxweiler <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
keywords = ["font", "ufo", "fonts"]
repository = "https://github.com/linebender/norad"
description = "Read and write Unified Font Object files."
readme = "README.md"
categories = ["graphics", "text-processing"]
exclude = [
"/testdata/*"
]
[package.metadata.docs.rs]
features = ["kurbo"]
[features]
default = []
kurbo = ["dep:kurbo"]
rayon = ["dep:rayon"]
[dependencies]
plist = { version = "1.4.1", features = ["serde"] }
uuid = { version = "1.2", features = ["v4"] }
serde = { version = "1.0", features = ["rc", "derive"] }
serde_derive = "1.0"
serde_repr = "0.1"
quick-xml = { version = "0.36.0", features = ["serialize"] }
rayon = { version = "1.3.0", optional = true }
kurbo = { version = "0.11.0", optional = true }
thiserror = "1.0"
indexmap = { version = "2.0.0", features = ["serde"] }
base64 = "0.22"
close_already = "0.3"
[dev-dependencies]
failure = "0.1.6"
serde_test = "1.0.102"
maplit = "1.0.2"
pretty_assertions = "1.0"
expect-test = "1.4.1"
criterion = "0.5"
tempfile = "3.8.0"
# https://github.com/bheisler/criterion.rs/issues/193
# Make it possible to save baseline, e.g. cargo bench -- --save-baseline master
[lib]
bench = false
[[bench]]
name = "glif_parse"
harness = false