Cargo.toml 908 Bytes
Newer Older
Hero Bird's avatar
Hero Bird committed
1
[package]
2
name = "ink_core"
Hero Bird's avatar
Hero Bird committed
3
version = "0.1.0"
4
authors = ["Parity Technologies <admin@parity.io>"]
Hero Bird's avatar
Hero Bird committed
5
6
edition = "2018"

7
license = "GPL-3.0"
Hero Bird's avatar
Hero Bird committed
8
9
readme = "README.md"

10
11
12
repository = "https://github.com/paritytech/ink"
documentation = "https://github.com/paritytech/ink/wiki"
homepage = "https://www.parity.io/"
Hero Bird's avatar
Hero Bird committed
13

14
description = "[ink!] Rust based eDSL for writing smart contracts for Substrate"
Hero Bird's avatar
Hero Bird committed
15
16
17
keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"]
categories = ["no-std", "embedded"]

18
include = ["/Cargo.toml", "src/**/*.rs", "/README.md", "/LICENSE"]
Hero Bird's avatar
Hero Bird committed
19
20

[dependencies]
21
22
23
ink_alloc = { path = "../alloc/", default-features = false }
ink_utils = { path = "../utils/", default-features = false }
parity-codec = { version = "4.1", default-features = false, features = ["derive", "full"] }
Hero Bird's avatar
Hero Bird committed
24

25
[features]
26
default = ["std"]
27
test-env = ["std"]
28
29
30
std = [
    "ink_alloc/std",
    "ink_utils/std",
31
    "parity-codec/std",
32
]