-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (40 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
46
47
48
[package]
name = "founder"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0/MIT"
authors = ["Ivan Ukhov <[email protected]>"]
description = "The package provides a font toolbox."
documentation = "https://docs.rs/founder"
homepage = "https://github.com/bodoni/founder"
repository = "https://github.com/bodoni/founder"
exclude = ["tests/fixtures/*"]
[features]
default = ["binary"]
binary = ["arguments", "colored", "resvg"]
[[bin]]
name = "founder"
path = "src/bin/main.rs"
[[bin]]
name = "founder-features"
path = "src/bin/features.rs"
required-features = ["binary"]
[[bin]]
name = "founder-names"
path = "src/bin/names.rs"
required-features = ["binary"]
[[bin]]
name = "founder-rasterize"
path = "src/bin/rasterize.rs"
required-features = ["binary"]
[[bin]]
name = "founder-vectorize"
path = "src/bin/vectorize.rs"
required-features = ["binary"]
[dependencies]
folder = "0.6"
font = "0.31"
svg = "0.17"
arguments = { version = "0.7", optional = true }
colored = { version = "2", optional = true }
resvg = { version = "0.41", default-features = false, optional = true }