Cargo.toml 858 Bytes
Newer Older
1
[package]
2
name = "ink_allocator"
Hero Bird's avatar
Hero Bird committed
3
version = "3.0.0-rc2"
Hero Bird's avatar
Hero Bird committed
4
authors = ["Parity Technologies <admin@parity.io>", "Robin Freyler <robin@parity.io>"]
5
6
edition = "2018"

7
license = "Apache-2.0"
8
9
readme = "README.md"
repository = "https://github.com/paritytech/ink"
Hero Bird's avatar
Hero Bird committed
10
documentation = "https://docs.rs/ink_allocator/"
11
homepage = "https://www.parity.io/"
12
description = "[ink!] Bindings to the Wasm heap memory allocator."
13
14
keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"]
categories = ["no-std", "embedded"]
Hero Bird's avatar
Hero Bird committed
15
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
16
17

[dependencies]
18
wee_alloc = { version = "0.4", default-features = false }
19
20

[features]
21
default = ["std"]
22
std = []
23
24
25
26

# The feature is not yet utilized in this crate, but we need to add it
# here already anyway, since the CI tries to execute fuzzing on each crate.
ink-fuzz-tests = ["std"]