[package] name = "ink_storage_derive" version = "3.0.0-rc2" authors = ["Parity Technologies ", "Robin Freyler "] edition = "2018" license = "Apache-2.0" readme = "../README.md" repository = "https://github.com/paritytech/ink" documentation = "https://substrate.dev/substrate-contracts-workshop/#/" homepage = "https://www.parity.io/" description = "[ink!] Derive macros for common ink_storage defined traits." keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"] categories = ["no-std", "embedded"] include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] [lib] proc-macro = true [dependencies] quote = "1.0" syn = { version = "1.0", features = ["full"] } proc-macro2 = "1.0" synstructure = "0.12.4" [dev-dependencies] ink_primitives = { version = "3.0.0-rc2", path = "../../primitives" } ink_metadata = { version = "3.0.0-rc2", path = "../../metadata" } ink_storage = { version = "3.0.0-rc2", path = ".." } [features] # The feature is not yet utilized in this crate, but we need to add it # here already anyway, since the CI tries to execute fuzzing on each crate. ink-fuzz-tests = []