Cargo.toml 926 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
21
22
23

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

27
28
29
[dev-dependencies]
env_logger = { version = "0.6", default-features = false }

30
31
[features]
default = []
32
test-env = []