Skip to content

Commit

Permalink
Add new Cargo.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlcctrlv committed Oct 2, 2023
1 parent c0185a1 commit a229f16
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 17 deletions.
20 changes: 12 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,19 +88,19 @@ 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", features=["skia"]} # for development
MFEKmath = { git = "https://github.com/MFEK/math.rlib", branch = "main" }
#MFEKmath = { path = "../math.rlib", features=["skia"]} # 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 = { git = "https://github.com/MFEK/spline.rlib" }
Expand Down Expand Up @@ -130,7 +130,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"] }
kurbo = { git = "https://github.com/MFEK/kurbo.rlib", branch = "master" }

# show backtrace
backtrace = "0.3"
Expand Down

0 comments on commit a229f16

Please sign in to comment.