From 974f5617e05a0b436e9fe7f6ac0912722ec24ecd Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Fri, 28 Feb 2020 13:12:58 -0700 Subject: [PATCH] depend on witx 0.8.3, rather than a path dependency. (#27) and delete the submodule that was providing the path dep --- .gitmodules | 3 --- crates/WASI | 1 - crates/generate/Cargo.toml | 2 +- 3 files changed, 1 insertion(+), 5 deletions(-) delete mode 160000 crates/WASI diff --git a/.gitmodules b/.gitmodules index dc4e4a07bb..e69de29bb2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +0,0 @@ -[submodule "crates/WASI"] - path = crates/WASI - url = https://github.com/webassembly/wasi.git diff --git a/crates/WASI b/crates/WASI deleted file mode 160000 index 19ad34a27e..0000000000 --- a/crates/WASI +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 19ad34a27ebcfa90c56afe0e4af6ad9fc33d3f41 diff --git a/crates/generate/Cargo.toml b/crates/generate/Cargo.toml index 6008ca57ba..39a5814f86 100644 --- a/crates/generate/Cargo.toml +++ b/crates/generate/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" [dependencies] wiggle-runtime = { path = "../runtime" } -witx = { path = "../WASI/tools/witx" } +witx = "0.8.3" quote = "1.0" proc-macro2 = "1.0" heck = "0.3"