forked from paritytech/parity-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (42 loc) · 1.42 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "parity-wasm"
version = "0.42.2"
authors = ["Nikolay Volf <nikvolf@gmail.com>", "Svyatoslav Nikolsky <svyatonik@yandex.ru>", "Sergey Shulepov <s.pepyakin@gmail.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/paritytech/parity-wasm"
homepage = "https://github.com/paritytech/parity-wasm"
documentation = "https://docs.rs/parity-wasm"
description = "WebAssembly low-level format library"
keywords = ["wasm", "webassembly", "bytecode", "serde", "interpreter"]
categories = ["wasm", "parser-implementations"]
exclude = [ "res/*", "spec/*" ]
edition = "2018"
[dev-dependencies]
time = "0.1"
[features]
default = ["std"]
std = []
# Reduce stack usage for buffered read operations.
# This feature is useful when integrating on resource constrained devices such as microcontroler
# where the stack size is fixed (stacks do not grow) and limited to a few (k)bytes.
reduced-stack-buffer = []
#
# Features for enabling non-MVP proposals.
# These features should be tested as part of Travis CI build.
#
# Atomics aka threading.
# https://github.com/webassembly/threads/
atomics = []
# SIMD
# https://github.com/WebAssembly/simd/
simd = []
# Sign-extension operators
# https://github.com/WebAssembly/sign-extension-ops/
sign_ext = []
# Bulk-memory operators
# https://github.com/WebAssembly/bulk-memory-operations/
bulk = []
# Multi-value
# https://github.com/WebAssembly/multi-value/
multi_value = []