Initial reorg.
This is largely the same as #305, but updated for the current tree.
This commit is contained in:
4
.gitmodules
vendored
4
.gitmodules
vendored
@@ -2,8 +2,8 @@
|
||||
path = spec_testsuite
|
||||
url = https://github.com/WebAssembly/testsuite
|
||||
[submodule "wasmtime-api/c-examples/wasm-c-api"]
|
||||
path = wasmtime-api/c-examples/wasm-c-api
|
||||
path = crates/wasmtime/c-examples/wasm-c-api
|
||||
url = https://github.com/WebAssembly/wasm-c-api
|
||||
[submodule "wasi-common/WASI"]
|
||||
path = wasi-common/WASI
|
||||
path = crates/wasi-common/WASI
|
||||
url = https://github.com/WebAssembly/WASI
|
||||
|
||||
26
Cargo.toml
26
Cargo.toml
@@ -15,17 +15,17 @@ cranelift-codegen = { version = "0.49", features = ["enable-serde"] }
|
||||
cranelift-entity = { version = "0.49", features = ["enable-serde"] }
|
||||
cranelift-wasm = { version = "0.49", features = ["enable-serde"] }
|
||||
cranelift-native = { version = "0.49" }
|
||||
wasmtime-api = { path = "wasmtime-api" }
|
||||
wasmtime-debug = { path = "wasmtime-debug" }
|
||||
wasmtime-environ = { path = "wasmtime-environ" }
|
||||
wasmtime-interface-types = { path = "wasmtime-interface-types" }
|
||||
wasmtime-runtime = { path = "wasmtime-runtime" }
|
||||
wasmtime-jit = { path = "wasmtime-jit" }
|
||||
wasmtime-obj = { path = "wasmtime-obj" }
|
||||
wasmtime-wast = { path = "wasmtime-wast" }
|
||||
wasmtime-wasi = { path = "wasmtime-wasi" }
|
||||
wasmtime-wasi-c = { path = "wasmtime-wasi-c", optional = true }
|
||||
wasi-common = { path = "wasi-common" }
|
||||
wasmtime-api = { path = "crates/api" }
|
||||
wasmtime-debug = { path = "crates/debug" }
|
||||
wasmtime-environ = { path = "crates/environ" }
|
||||
wasmtime-interface-types = { path = "crates/interface-types" }
|
||||
wasmtime-runtime = { path = "crates/runtime" }
|
||||
wasmtime-jit = { path = "crates/jit" }
|
||||
wasmtime-obj = { path = "crates/obj" }
|
||||
wasmtime-wast = { path = "crates/wast" }
|
||||
wasmtime-wasi = { path = "crates/wasi" }
|
||||
wasmtime-wasi-c = { path = "crates/wasi-c", optional = true }
|
||||
wasi-common = { path = "crates/wasi-common" }
|
||||
docopt = "1.0.1"
|
||||
serde = { "version" = "1.0.94", features = ["derive"] }
|
||||
faerie = "0.12.0"
|
||||
@@ -43,8 +43,8 @@ anyhow = "1.0.19"
|
||||
|
||||
[workspace]
|
||||
members = [
|
||||
"misc/wasmtime-rust",
|
||||
"misc/wasmtime-py",
|
||||
"crates/misc/rust",
|
||||
"crates/misc/py",
|
||||
]
|
||||
|
||||
exclude = ["wasi-common/wasi-misc-tests"]
|
||||
|
||||
@@ -48,7 +48,7 @@ mkdir tmp/$api_pkgname/lib
|
||||
mkdir tmp/$api_pkgname/include
|
||||
cp LICENSE README.md tmp/$api_pkgname
|
||||
mv bins-$src/* tmp/$api_pkgname/lib
|
||||
cp wasmtime-api/c-examples/wasm-c-api/include/wasm.h tmp/$api_pkgname/include
|
||||
cp crates/wasmtime/c-examples/wasm-c-api/include/wasm.h tmp/$api_pkgname/include
|
||||
mktarball $api_pkgname
|
||||
|
||||
# Move wheels to dist folder
|
||||
|
||||
@@ -17,9 +17,9 @@ cranelift-native = { version = "0.49" }
|
||||
cranelift-entity = { version = "0.49", features = ["enable-serde"] }
|
||||
cranelift-wasm = { version = "0.49", features = ["enable-serde"] }
|
||||
cranelift-frontend = { version = "0.49" }
|
||||
wasmtime-runtime = { path="../wasmtime-runtime" }
|
||||
wasmtime-environ = { path="../wasmtime-environ" }
|
||||
wasmtime-jit = { path="../wasmtime-jit" }
|
||||
wasmtime-runtime = { path="../runtime" }
|
||||
wasmtime-environ = { path="../environ" }
|
||||
wasmtime-jit = { path="../jit" }
|
||||
wasmparser = { version = "0.39.2", default-features = false }
|
||||
target-lexicon = { version = "0.9.0", default-features = false }
|
||||
anyhow = "1.0.19"
|
||||
@@ -38,7 +38,7 @@ wasi-common = { path = "../wasi-common" }
|
||||
docopt = "1.0.1"
|
||||
serde = { "version" = "1.0.94", features = ["derive"] }
|
||||
pretty_env_logger = "0.3.0"
|
||||
wasmtime-wast = { path="../wasmtime-wast" }
|
||||
wasmtime-wasi = { path="../wasmtime-wasi" }
|
||||
wasmtime-wast = { path="../wast" }
|
||||
wasmtime-wasi = { path="../wasi" }
|
||||
rayon = "1.1"
|
||||
file-per-thread-logger = "0.1.1"
|
||||
1
crates/api/c-examples/wasm-c-api
Submodule
1
crates/api/c-examples/wasm-c-api
Submodule
Submodule crates/api/c-examples/wasm-c-api added at 8782d5b456
@@ -18,7 +18,7 @@ cranelift-codegen = { version = "0.49", features = ["enable-serde"] }
|
||||
cranelift-entity = { version = "0.49", features = ["enable-serde"] }
|
||||
cranelift-wasm = { version = "0.49", features = ["enable-serde"] }
|
||||
faerie = "0.12.0"
|
||||
wasmtime-environ = { path = "../wasmtime-environ", default-features = false }
|
||||
wasmtime-environ = { path = "../environ", default-features = false }
|
||||
target-lexicon = { version = "0.9.0", default-features = false }
|
||||
failure = { version = "0.1.3", default-features = false }
|
||||
hashbrown = { version = "0.6.0", optional = true }
|
||||
@@ -16,5 +16,5 @@ cranelift-codegen = { version = "0.49", default-features = false }
|
||||
walrus = "0.13"
|
||||
wasmparser = { version = "0.39.2", default-features = false }
|
||||
wasm-webidl-bindings = "0.6"
|
||||
wasmtime-jit = { path = '../wasmtime-jit', default-features = false }
|
||||
wasmtime-runtime = { path = '../wasmtime-runtime', default-features = false }
|
||||
wasmtime-jit = { path = '../jit', default-features = false }
|
||||
wasmtime-runtime = { path = '../runtime', default-features = false }
|
||||
@@ -15,9 +15,9 @@ cranelift-codegen = { version = "0.49", features = ["enable-serde"] }
|
||||
cranelift-entity = { version = "0.49", features = ["enable-serde"] }
|
||||
cranelift-wasm = { version = "0.49", features = ["enable-serde"] }
|
||||
cranelift-frontend = { version = "0.49" }
|
||||
wasmtime-environ = { path = "../wasmtime-environ", default-features = false }
|
||||
wasmtime-runtime = { path = "../wasmtime-runtime", default-features = false }
|
||||
wasmtime-debug = { path = "../wasmtime-debug", default-features = false }
|
||||
wasmtime-environ = { path = "../environ", default-features = false }
|
||||
wasmtime-runtime = { path = "../runtime", default-features = false }
|
||||
wasmtime-debug = { path = "../debug", default-features = false }
|
||||
region = "2.0.0"
|
||||
failure = { version = "0.1.3", default-features = false }
|
||||
thiserror = "1.0.4"
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user