Cargo.toml 829 Bytes
Newer Older
1
2
[package]
name = "ink_prelude"
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_prelude/"
11
homepage = "https://www.parity.io/"
12
description = "[ink!] Common API for no_std and std to access alloc crate types."
13
14
15
16
17
keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"]
categories = ["no-std", "embedded"]
include = ["/Cargo.toml", "src/**/*.rs", "/README.md", "/LICENSE"]

[dependencies]
18
cfg-if = "1.0"
19
20
21
22

[features]
default = ["std"]
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"]