-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathCargo.toml
45 lines (39 loc) · 1.06 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
[package]
name = "write-fonts"
version = "0.36.4"
description = "Writing font files."
readme = "README.md"
categories = ["text-processing", "parsing", "graphics"]
edition.workspace = true
license.workspace = true
repository.workspace = true
[package.metadata.docs.rs]
# To build locally:
# RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --all-features
all-features = true
[features]
default = []
read = []
dot2 = ["dep:dot2"]
serde = ["dep:serde", "font-types/serde", "read-fonts/serde"]
ift = ["read-fonts/ift"]
[dependencies]
font-types = { workspace = true }
read-fonts = { workspace = true, default-features = true }
log = "0.4"
kurbo.workspace = true
dot2 = { version = "1.0", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
indexmap = "2.0"
[dev-dependencies]
diff = "0.1.12"
ansi_term = "0.12.1"
font-test-data = { workspace = true }
read-fonts = { workspace = true, features = [
"codegen_test", "experimental_traverse"
] }
rstest = "0.18.0"
bincode = "1.0"
rand = "0.8.5"
pretty_assertions.workspace = true
env_logger.workspace = true