forked from paritytech/parity-wasm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
55 lines (45 loc) · 1.5 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
52
53
54
55
[package]
name = "parity-wasm"
version = "0.45.1"
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"]
include = ["src/**/*", "LICENSE-*", "README.md"]
edition = "2021"
rust-version = "1.56.1"
[workspace]
members = ["testsuite"]
[dev-dependencies]
time = "0.3"
[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 = []