-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
68 lines (49 loc) · 2.02 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
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "MFEKufo"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
gl = "0.14.0"
skia-safe = { version = "0.69.0", features = ["gl"] }
skia-bindings = { version = "0.69.0", features = ["gl"] }
# For windowing, contexts, and events
sdl2 = { version = ">=0.34", features = ["raw-window-handle"] }
egui = { git = "https://github.com/MFEK/egui.rlib" }
egui-sdl2-event = { git = "https://github.com/MFEK/egui-sdl2-event.rlib" }
egui_skia = { git = "https://github.com/MFEK/egui_skia.rlib" }
egui_dock = { git = "https://github.com/MFEK/egui_dock.rlib" }
# For argument parsing
clap = "3.0"
# File dialog
nfd = { git = "https://github.com/MFEK/nfd.rs" }
# File locking
fs2 = "0.3"
# Command parsing for console
regex = "1"
serde_json = "1.0"
serde = "1.0"
## Our crates
# parses .glif files and gives us a place to put arbitrary data
glifparser = { git = "https://github.com/MFEK/glifparser.rlib", branch = "master", features=["skia", "mfek"] }
#glifparser = { path = "../glifparser.rlib", features=["skia", "mfek"] } # for development
MFEKmath = { git = "https://github.com/MFEK/math.rlib", branch = "main" }
#MFEKmath = { path = "../math.rlib" } # for development
pub-mod = { git = "https://github.com/MFEK/pub_mod.rlib" }
mfek-ipc = { git = "https://github.com/MFEK/ipc.rlib" }
#mfek-ipc = { path = "../ipc.rlib" } # for development
glifrenderer = { git = "https://github.com/MFEK/glifrenderer.rlib" }
#glifrenderer = { path = "../glifrenderer.rlib" } # for development
norad = "0.10.0"
colored = "2.0"
log = "0.4"
image = { version = "0.24.6", features = ["png"], default-features = false }
csv = "1.2.1"
fuzzy-matcher = "0.3.7"
libmfekufo = {git = "https://github.com/MFEK/ufoblocks.rlib"}
#libmfekufo = { path = "../ufoblocks.rlib" } # for development
kurbo = { git = "https://github.com/MFEK/kurbo.rlib", branch = "master" }
backtrace-on-stack-overflow = "0.3.0"
[features]
sdl2-static = ["sdl2/bundled", "sdl2/static-link"]
sdl2-dynamic = []