-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (37 loc) · 1.16 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
[package]
name = "MFEKpathops"
version = "0.1.0-beta1"
authors = ["Fredrick Brennan <copypasteⒶkittens.ph>", "MFEK Authors"]
edition = "2021"
# 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", "skia"] }
MFEKmath = { git = "https://github.com/MFEK/math.rlib", branch = "main", default-features = false }
#glifparser = { path = "../glifparser.rlib", features=["mfek", "skia"] } # for dev
#MFEKmath = { path = "../math.rlib" } # for dev
skia-safe = { version = "*", default-features = false }
flo_curves = "0.6"
kurbo = "0.8"
derive_more = "0.99"
# For reading and writing glifs
xmltree = "0.10.1"
log = "0.4"
env_logger = "0.9"
serde_json = "1.0" # for glifjson
# Docs
embed-doc-image = "0.1"
[lib]
name = "mfekpathops"
path = "src/lib.rs"
[[bin]]
name = "MFEKpathops"
path = "src/main.rs"
[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1
[features]
debug = ["clap/debug"]