Skip to content

Commit

Permalink
mv crates skate
Browse files Browse the repository at this point in the history
  • Loading branch information
aDotInTheVoid committed Jul 28, 2021
1 parent 3bb4755 commit f323013
Show file tree
Hide file tree
Showing 33 changed files with 23 additions and 23 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[workspace]
resolver = "2"
members = [
"./cmd/skate",
"./cmd/skate-treewalk",
"./crates/compiler",
"./crates/diagnostics",
"./crates/parser",
"./crates/rt_common",
"./crates/treewalk",
"./crates/value",
"./crates/vm",
"./cmd/skate",
"./playground",
"./skate/compiler",
"./skate/diagnostics",
"./skate/parser",
"./skate/rt_common",
"./skate/treewalk",
"./skate/value",
"./skate/vm",
"./tests/runner",
]
10 changes: 5 additions & 5 deletions cmd/skate-treewalk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ repository = "https://github.com/aDotInTheVoid/skate/"

[dependencies]
codespan-reporting = "0.11.1"
diagnostics = { path = "../../crates/diagnostics" }
diagnostics = { path = "../../skate/diagnostics" }
eyre = "0.6.5"
fs-err = "2.6.0"
parser = { path = "../../crates/parser" }
rt_common = { path = "../../crates/rt_common" }
treewalk = { path = "../../crates/treewalk" }
value = { path = "../../crates/value" }
parser = { path = "../../skate/parser" }
rt_common = { path = "../../skate/rt_common" }
treewalk = { path = "../../skate/treewalk" }
value = { path = "../../skate/value" }
wasm-bindgen = "0.2.74"

[build-dependencies]
Expand Down
10 changes: 5 additions & 5 deletions cmd/skate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ edition = "2018"

[dependencies]
codespan-reporting = "0.11.1"
compiler = { path = "../../crates/compiler" }
compiler = { path = "../../skate/compiler" }
debug2 = "0.1"
diagnostics = { path = "../../crates/diagnostics" }
diagnostics = { path = "../../skate/diagnostics" }
eyre = "0.6.5"
fs-err = "2.6.0"
parser = { path = "../../crates/parser" }
rt_common = { path = "../../crates/rt_common" }
parser = { path = "../../skate/parser" }
rt_common = { path = "../../skate/rt_common" }
structopt = "0.3.22"
vm = { path = "../../crates/vm" }
vm = { path = "../../skate/vm" }
2 changes: 1 addition & 1 deletion playground/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
codespan-reporting = "0.11.1"
console_error_panic_hook = "0.1.6"
diagnostics = { path = "../crates/diagnostics" }
diagnostics = { path = "../skate/diagnostics" }
skate-treewalk = { path = "../cmd/skate-treewalk" }
termcolor = "1.1.2"
wasm-bindgen = "0.2.74"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions tests/runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ edition = "2018"

[dependencies]
camino = "1.0.4"
compiler = { path = "../../crates/compiler" }
diagnostics = { path = "../../crates/diagnostics" }
compiler = { path = "../../skate/compiler" }
diagnostics = { path = "../../skate/diagnostics" }
eyre = "0.6.5"
fs-err = "2.6.0"
glob = "0.3.0"
parser = { path = "../../crates/parser" }
parser = { path = "../../skate/parser" }
structopt = "0.3.22"
threadpool = "1.8.1"
vm = { path = "../../crates/vm" }
vm = { path = "../../skate/vm" }

0 comments on commit f323013

Please sign in to comment.