Cargo.toml 930 Bytes
Newer Older
Hero Bird's avatar
Hero Bird committed
1
2
3
[package]
name = "pdsl_core"
version = "0.1.0"
Hero Bird's avatar
Hero Bird committed
4
authors = ["Robin Freyler <robin@parity.io>", "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
10
11
12
13
14
15
16
17
readme = "README.md"

# repository = "https://github.com/robbepop/substrate-contract"
# homepage = "https://github.com/robbepop/substrate-contract"
# documentation = "https://robbepop.github.io/pwasm-abi/substrate-contract/"

description = "[pDSL: Parity eDSL] Rust based eDSL for writing smart contracts for Substrate"
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
pdsl_utils = { path = "../utils/" }
22
parity-codec = { version = "3.2", default-features = false, features = ["derive", "full"] }
23
log = "0.4"
24
wee_alloc = { version = "0.4", default-features = false }
Hero Bird's avatar
Hero Bird committed
25

26
27
[features]
default = []
28
29
test-env = ["std"]
std = []