forked from bytecodealliance/wamr-rust-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (30 loc) · 871 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright (C) 2019 Intel Corporation. All rights reserved.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
[workspace]
members = ["crates/wamr-sys"]
exclude = [
"examples/wasi-hello",
"resources/test/gcd",
"resources/test/add-extra",
".devcontainer",
".github",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
authors = ["The WAMR Project Developers"]
[package]
name = "wamr-rust-sdk"
description = "The Rust SDK of WAMR"
license.workspace = true
edition.workspace = true
repository = "https://github.com/bytecodealliance/wamr-rust-sdk"
version = "0.1.0"
readme = "README.md"
categories = ["api-bindings", "wasm"]
keywords = ["api-bindings", "wasm", "webassembly"]
[dependencies]
wamr-sys = { path = "crates/wamr-sys", version = "0.1.0" }
# [features]
# llvmjit = ["wamr-sys/llvmjit"]