forked from rhysd/wain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (30 loc) · 1010 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
[package]
name = "wain-ast"
version = "0.2.1"
authors = ["rhysd <lin90162@yahoo.co.jp>"]
edition = "2018"
description = "WebAssembly abstract syntax tree definition used by both binary format and text format for wain project"
license = "MIT"
homepage = "https://github.com/rhysd/wain/tree/master/wain-ast"
repository = "https://github.com/rhysd/wain"
readme = "README.md"
include = ["src/**/*.rs", "Cargo.toml", "README.md"]
keywords = ["wasm", "webassembly", "wat", "syntax-tree"]
categories = ["wasm"]
[package.metadata.release]
no-dev-version = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
no-std-compat = "0.4"
[badges]
maintenance = { status = "actively-developed" }
[features]
default = ["std"]
std = ["no-std-compat/std"]
core = [
"no-std-compat/alloc",
"no-std-compat/unstable",
"no-std-compat/compat_hash",
"no-std-compat/compat_sync",
"no-std-compat/compat_macros",
]