Cargo.toml 529 Bytes
Newer Older
[package]
name = "ink_core_derive"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"

license = "Apache-2.0"
readme = "../README.md"

[lib]
proc-macro = true

[dependencies]
ink_primitives = { path = "../../primitives", default-features = false }
Denis_P's avatar
Denis_P committed
quote = "1.0.3"
syn = { version = "1.0.16", features = ["full"] }
proc-macro2 = "1.0.9"
synstructure = "0.12.3"

[dev-dependencies]
ink_core = { path = ".." }
Denis_P's avatar
Denis_P committed
trybuild = "1.0.23"
std = [
    "ink_primitives/std",
]