chore: Move swf-rs to ruffle workspace

Move the swf-rs crate into the Ruffle workspace proper instead of
having a separate repo. This makes it easier to make changes to
the SWF parsing code during development. swf-rs can still be
published as its own crate from the subfolder.
This commit is contained in:
Mike Welsh 2019-10-02 18:58:58 -07:00
parent 0de44d61b3
commit 52b6832db2
2 changed files with 2 additions and 1 deletions

View File

@ -2,5 +2,6 @@
members = [ members = [
"core", "core",
"desktop", "desktop",
"swf",
"web" "web"
] ]

View File

@ -15,7 +15,7 @@ log = "0.4"
minimp3 = { version = "0.3.3", optional = true } minimp3 = { version = "0.3.3", optional = true }
puremp3 = { version = "0.1", optional = true } puremp3 = { version = "0.1", optional = true }
rand = "0.6.5" rand = "0.6.5"
swf = { git = "https://github.com/ruffle-rs/swf-rs", rev = "f5db446" } swf = { path = "../swf" }
[dependencies.jpeg-decoder] [dependencies.jpeg-decoder]
version = "0.1.16" version = "0.1.16"