2019-03-13 20:47:55 +01:00
|
|
|
# EVMC: Ethereum Client-VM Connector API.
|
|
|
|
# Copyright 2019 The EVMC Authors.
|
|
|
|
# Licensed under the Apache License, Version 2.0.
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "evmc-declare"
|
2019-12-04 10:02:20 +01:00
|
|
|
version = "7.2.0-alpha.0"
|
2019-03-13 20:47:55 +01:00
|
|
|
authors = ["Jake Lang <jak3lang@gmail.com>"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
repository = "https://github.com/ethereum/evmc"
|
|
|
|
description = "Bindings to EVMC (VM declare macro)"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-11-26 23:34:39 +01:00
|
|
|
quote = "1.0"
|
2019-03-13 20:47:55 +01:00
|
|
|
heck = "0.3.1"
|
2019-11-26 23:34:39 +01:00
|
|
|
proc-macro2 = "1.0"
|
|
|
|
syn = { version = "1.0", features = ["full"] }
|
2019-03-13 20:47:55 +01:00
|
|
|
# For documentation examples
|
2019-12-04 13:24:33 +01:00
|
|
|
evmc-vm = { path = "../evmc-vm", version = "7.2.0-alpha.0" }
|
2019-03-13 20:47:55 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|