forked from openethereum/pwasm-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (28 loc) · 908 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "pwasm-ethereum"
version = "0.5.1"
authors = ["NikVolf <[email protected]>"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/paritytech/pwasm-ethereum"
homepage = "https://github.com/paritytech/pwasm-ethereum"
documentation = "https://paritytech.github.io/pwasm-ethereum/pwasm_ethereum/"
description = "Externs library to interact with Ethereum-like network"
keywords = ["wasm", "parity", "ethereum", "blockchain"]
categories = ["no-std", "embedded"]
[build-dependencies]
parity-hash = { version = "1", default-features = false }
[dependencies]
pwasm-std = "0.9"
[dependencies.bigint]
version = "4"
default-features = false
[dependencies.byteorder]
version = "1"
default-features = false
[dependencies.parity-hash]
version = "1"
default-features = false
[features]
default = []
std = ["pwasm-std/std", "parity-hash/std", "bigint/std", "byteorder/std"]