Cargo.toml 834 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
7
8
9
10
11
12
13
14
15
16
17
edition = "2018"

license = "MIT/Apache-2.0"
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
21
22
23

[dependencies]
parity-codec = { version = "2.0" }
parity-codec-derive = { version = "2.0" }
tiny-keccak = "1.4"
24
log = "0.4"
Hero Bird's avatar
Hero Bird committed
25

26
27
[features]
default = []
28
test-env = []