forked from wasmerio/wasmer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Standardize Cargo files of all crates
- Loading branch information
1 parent
cad7d86
commit 2cd1221
Showing
22 changed files
with
79 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[package] | ||
name = "wasmer-workspace" | ||
version = "1.0.0-alpha02.0" | ||
description = "Wasmer workspace" | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
description = "Wasmer workspace" | ||
license = "MIT" | ||
edition = "2018" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
[package] | ||
name = "wasmer" | ||
version = "1.0.0-alpha02.0" | ||
description = "High-performant WebAssembly runtime" | ||
categories = ["wasm"] | ||
keywords = ["wasm", "webassembly", "runtime", "vm"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
description = "Wasmer runtime API" | ||
license = "MIT OR Apache-2.0 WITH LLVM-exception" | ||
repository = "https://github.com/wasmerio/wasmer" | ||
license = "MIT" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,12 @@ | |
name = "wasmer-c-api" | ||
version = "1.0.0-alpha02.0" | ||
description = "Wasmer C API library" | ||
categories = ["wasm", "api-bindings"] | ||
keywords = ["wasm", "webassembly", "runtime"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
documentation = "https://wasmerio.github.io/wasmer/c-api/" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
keywords = ["wasm", "webassembly", "runtime"] | ||
categories = ["wasm"] | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "wasmer-cache" | ||
version = "1.0.0-alpha02.0" | ||
description = "Cache system for WebAssembly" | ||
license = "MIT" | ||
description = "Cache system for Wasmer WebAssembly runtime" | ||
categories = ["wasm", "caching"] | ||
keywords = ["wasm", "webassembly", "cache"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
categories = ["wasm"] | ||
keywords = ["webassembly", "wasm", "cache"] | ||
license = "MIT" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,12 @@ | ||
[package] | ||
name = "wasmer-cli" | ||
version = "1.0.0-alpha02.0" | ||
description = "Wasmer CLI" | ||
categories = ["wasm", "command-line-interface"] | ||
keywords = ["wasm", "webassembly", "cli"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
description = "Wasmer CLI" | ||
license = "MIT" | ||
include = [ | ||
"src/**/*", | ||
"Cargo.lock", | ||
"Cargo.toml", | ||
"LICENSE", | ||
"README.md" | ||
] | ||
readme = "README.md" | ||
edition = "2018" | ||
default-run = "wasmer" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "wasmer-compiler-cranelift" | ||
version = "1.0.0-alpha02.0" | ||
description = "Cranelift compiler for Wasmer WebAssembly runtime" | ||
categories = ["wasm"] | ||
keywords = ["wasm", "webassembly", "compiler", "cranelift"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
description = "Standalone environment support for WebAsssembly code in Cranelift" | ||
license = "MIT OR Apache-2.0 WITH LLVM-exception" | ||
repository = "https://github.com/wasmerio/wasmer" | ||
documentation = "https://docs.rs/wasmer-compiler-cranelift/" | ||
categories = ["wasm"] | ||
keywords = ["webassembly", "wasm", "compiler", "cranelift"] | ||
license = "MIT OR Apache-2.0 WITH LLVM-exception" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
[package] | ||
name = "wasmer-compiler-llvm" | ||
version = "1.0.0-alpha02.0" | ||
license = "MIT" | ||
description = "LLVM compiler for Wasmer WebAssembly runtime" | ||
categories = ["wasm"] | ||
keywords = ["wasm", "webassembly", "compiler", "llvm"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
description = "LLVM compiler backend for the Wasmer Wasm runtime" | ||
repository = "https://github.com/wasmerio/wasmer" | ||
keywords = ["webassembly", "wasm", "compiler", "llvm"] | ||
categories = ["wasm"] | ||
documentation = "https://docs.rs/wasmer-compiler-llvm/" | ||
license = "MIT" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "wasmer-compiler-singlepass" | ||
version = "1.0.0-alpha02.0" | ||
description = "Singlepass compiler for Wasmer WebAssembly runtime" | ||
categories = ["wasm"] | ||
keywords = ["wasm", "webassembly", "compiler", "singlepass"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
description = "Standalone environment support for WebAsssembly code in Singlepass" | ||
license = "MIT OR Apache-2.0 WITH LLVM-exception" | ||
repository = "https://github.com/wasmerio/wasmer" | ||
documentation = "https://docs.rs/wasmer-compiler-singlepass/" | ||
categories = ["wasm"] | ||
keywords = ["webassembly", "wasm", "compiler", "singlepass"] | ||
license = "MIT" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "wasmer-compiler" | ||
version = "1.0.0-alpha02.0" | ||
description = "Base compiler abstraction for WebAssembly" | ||
license = "MIT OR Apache-2.0 WITH LLVM-exception" | ||
description = "Base compiler abstraction for Wasmer WebAssembly runtime" | ||
categories = ["wasm", "no-std"] | ||
keywords = ["wasm", "webassembly", "compiler"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
categories = ["no-std", "wasm"] | ||
keywords = ["webassembly", "wasm", "compiler"] | ||
license = "MIT OR Apache-2.0 WITH LLVM-exception" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "wasmer-runtime-core" | ||
version = "0.18.0" | ||
description = "Wasmer runtime core library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
keywords = ["wasm", "webassembly", "runtime"] | ||
description = "Wasmer runtime core library (deprecated in favor of wasmer crate)" | ||
categories = ["wasm"] | ||
keywords = ["wasm", "webassembly", "runtime"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
license = "MIT" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "wasmer-runtime" | ||
version = "0.18.0" | ||
description = "Wasmer runtime library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
keywords = ["wasm", "webassembly", "runtime", "sandbox", "secure"] | ||
description = "Wasmer runtime library (deprecated in favor of wasmer crate)" | ||
categories = ["wasm", "api-bindings"] | ||
keywords = ["wasm", "webassembly", "runtime"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
license = "MIT" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "wasmer-emscripten" | ||
version = "1.0.0-alpha02.0" | ||
description = "Wasmer runtime emscripten implementation library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
description = "Emscripten implementation library for Wasmer WebAssembly runtime" | ||
categories = ["wasm", "os"] | ||
keywords = ["wasm", "webassembly", "abi", "emscripten", "posix"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
keywords = ["wasm", "webassembly", "ABI", "emscripten", "posix"] | ||
categories = ["wasm"] | ||
license = "MIT" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "wasmer-engine-jit" | ||
version = "1.0.0-alpha02.0" | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
description = "Wasmer JIT Engine" | ||
license = "MIT OR Apache-2.0 WITH LLVM-exception " | ||
categories = ["wasm"] | ||
keywords = ["webassembly", "wasm"] | ||
keywords = ["wasm", "webassembly", "engine", "jit"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
license = "MIT OR Apache-2.0 WITH LLVM-exception " | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "wasmer-engine-native" | ||
version = "1.0.0-alpha02.0" | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
description = "Wasmer JIT Engine" | ||
license = "MIT OR Apache-2.0 WITH LLVM-exception" | ||
description = "Wasmer Native Engine" | ||
categories = ["wasm"] | ||
keywords = ["webassembly", "wasm"] | ||
keywords = ["wasm", "webassembly", "engine", "native"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
license = "MIT" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "wasmer-engine" | ||
version = "1.0.0-alpha02.0" | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
description = "Wasmer Engine abstraction" | ||
license = "MIT OR Apache-2.0 WITH LLVM-exception " | ||
categories = ["wasm"] | ||
keywords = ["webassembly", "wasm"] | ||
keywords = ["wasm", "webassembly", "engine"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
license = "MIT OR Apache-2.0 WITH LLVM-exception " | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "wasmer-object" | ||
version = "1.0.0-alpha02.0" | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
description = "Wasmer Native Object generator" | ||
license = "MIT OR Apache-2.0 WITH LLVM-exception" | ||
categories = ["wasm"] | ||
keywords = ["webassembly", "wasm"] | ||
keywords = ["wasm", "webassembly"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
license = "MIT" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "wasmer-vm" | ||
version = "1.0.0-alpha02.0" | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
description = "Runtime library support for Wasmer" | ||
license = "MIT OR Apache-2.0 WITH LLVM-exception" | ||
categories = ["wasm"] | ||
keywords = ["webassembly", "wasm"] | ||
keywords = ["wasm", "webassembly"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
license = "MIT OR Apache-2.0 WITH LLVM-exception" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
[package] | ||
name = "wasmer-wasi-experimental-io-devices" | ||
version = "1.0.0-alpha02.0" | ||
description = "An experimental non-standard WASI extension for graphics" | ||
categories = ["wasm"] | ||
keywords = ["wasm", "webassembly", "types"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
edition = "2018" | ||
repository = "https://github.com/wasmerio/wasmer" | ||
publish = true | ||
description = "An experimental non-standard WASI extension for graphics" | ||
readme = "README.md" | ||
license = "MIT" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
[badges] | ||
maintenance = { status = "experimental" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "wasmer-wasi" | ||
version = "1.0.0-alpha02.0" | ||
description = "Wasmer runtime WASI implementation library" | ||
license = "MIT" | ||
description = "WASI implementation library for Wasmer WebAssembly runtime" | ||
categories = ["wasm", "os"] | ||
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"] | ||
categories = ["wasm"] | ||
license = "MIT" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,16 @@ | |
name = "wasmer-types" | ||
version = "1.0.0-alpha02.0" | ||
description = "Wasmer Common Types" | ||
license = "MIT OR Apache-2.0 WITH LLVM-exception" | ||
categories = ["wasm", "no-std", "data-structures"] | ||
keywords = ["wasm", "webassembly", "types"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
categories = ["no-std", "wasm"] | ||
license = "MIT OR Apache-2.0 WITH LLVM-exception" | ||
readme = "README.md" | ||
keywords = ["webassembly", "wasm", "types"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
# We use `cranelift-entity` here because it's a light-weight dependency and it contains | ||
# We use `cranelift-entity` here because it's a lightweight dependency and it contains | ||
# some useful data structures | ||
cranelift-entity = "0.65" | ||
serde = { version = "1.0", features = ["derive"], optional = true, default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ authors = ["Wasmer Engineering Team <[email protected]>"] | |
description = "wast testing support for wasmer" | ||
license = "MIT OR (Apache-2.0 WITH LLVM-exception)" | ||
categories = ["wasm"] | ||
keywords = ["webassembly", "wasm"] | ||
keywords = ["wasm", "webassembly"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "wasi-test-generator" | |
version = "0.17.0" | ||
description = "Tests for our WASI implementation" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
edition = "2018" | ||
publish = false | ||
|
||
|