forked from MatthewBlanchard/MFEKStroke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (30 loc) · 1.23 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
[package]
name = "MFEKstroke"
version = "1.0.0"
authors = ["Matthew Blanchard <matthewrblanchard@gmail.com>", "Fredrick R. Brennan <copypaste@kittens.ph>", "MFEK Authors"]
edition = "2021"
license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# parse command line arguments
clap = { git = "https://github.com/MFEK/clap.rlib", branch = "master" }
# parses .glif files
glifparser = { git = "https://github.com/MFEK/glifparser.rlib", branch = "master", features=["mfek"] }
#glifparser = { path = "../glifparser.rlib", features=["mfek"] } # for development
MFEKmath = { git = "https://github.com/MFEK/math.rlib", features=["skia"], branch = "main" }
#MFEKmath = { path = "../math.rlib" } # for development
mfek-ipc = { git = "https://github.com/MFEK/ipc.rlib" }
#mfek-ipc = { path = "../ipc.rlib" } # for development
# For reading and writing glifs
xmltree = "0.10"
log = "0.4.11"
env_logger = "0.9"
serde_json = "1.0" # for glifjson
float-cmp = { version = "0.9.0", features = ["std"] }
# Can link FontForge as a dylib, if you have it installed. For nib stroking
[features]
fontforge = ["MFEKmath/fontforge"]
[profile.release]
opt-level = 'z'
#lto = true
codegen-units = 1