-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prevent segfault; final(?) commit in v2 branch
- Loading branch information
1 parent
e42e1a2
commit cf4fc08
Showing
6 changed files
with
38 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "MFEKglif" | ||
version = "1.1.1-beta2" | ||
version = "2.0.0-beta1" | ||
authors = ["Fredrick Brennan <[email protected]>", "Matthew Blanchard <[email protected]>", "MFEK Authors"] | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
|
@@ -88,20 +88,23 @@ ctrlc = "3.2" | |
|
||
## 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 | ||
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 | ||
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 | ||
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 | ||
glifrenderer = { git = "https://github.com/MFEK/glifrenderer.rlib" } | ||
#glifrenderer = { path = "../glifrenderer.rlib" } # for development | ||
|
||
# forked from linebender/spline | ||
#spline = { path = "../spline.rlib" } # for development | ||
spline = { git = "https://github.com/MFEK/spline.rlib" } | ||
|
||
#xml parsing | ||
xmltree = "0.10" | ||
|
@@ -125,8 +128,7 @@ flo_curves = "0.6" | |
plist = "1.3" | ||
|
||
# we use this for affine matrices in some of our data types | ||
kurbo = {version = "0.9.0", features = ["serde"]} | ||
spline = {git="https://github.com/linebender/spline"} | ||
kurbo = { version = "0.9.0", features = ["serde"] } | ||
|
||
# show backtrace | ||
backtrace = "0.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters