git.delta.rocks / unique-network / refs/commits / bfa69d53442e

difftreelog

source

tests/flipper-src/Cargo.toml1.8 KiBsourcehistory
1[package]2name = "flipper"3version = "0.1.0"4authors = ["[your_name] <[your_email]>"]5edition = "2018"67[dependencies]8ink_abi = { version = "2", git = "https://github.com/paritytech/ink", tag = "latest-v2", package = "ink_abi", default-features = false, features = ["derive"], optional = true }9ink_primitives = { version = "2", git = "https://github.com/paritytech/ink", tag = "latest-v2", package = "ink_primitives", default-features = false }10ink_core = { version = "2", git = "https://github.com/paritytech/ink", tag = "latest-v2", package = "ink_core", default-features = false }11ink_lang = { version = "2", git = "https://github.com/paritytech/ink", tag = "latest-v2", package = "ink_lang", default-features = false }1213scale = { package = "parity-scale-codec", version = "1.2", default-features = false, features = ["derive"] }1415[dependencies.type-metadata]16git = "https://github.com/type-metadata/type-metadata.git"17rev = "02eae9f35c40c943b56af5b60616219f2b72b47d"18default-features = false19features = ["derive"]20optional = true2122[lib]23name = "flipper"24path = "lib.rs"25crate-type = [26	# Used for normal contract Wasm blobs.27	"cdylib",28	# Required for ABI generation, and using this contract as a dependency.29	# If using `cargo contract build`, it will be automatically disabled to produce a smaller Wasm binary30	"rlib",31]3233[features]34default = ["test-env"]35std = [36    "ink_abi/std",37    "ink_core/std",38    "ink_primitives/std",39    "scale/std",40    "type-metadata/std",41]42test-env = [43    "std",44    "ink_lang/test-env",45]46ink-generate-abi = [47    "std",48    "ink_abi",49    "type-metadata",50    "ink_core/ink-generate-abi",51    "ink_lang/ink-generate-abi",52]53ink-as-dependency = []5455[profile.release]56panic = "abort"57lto = true58opt-level = "z"59overflow-checks = true6061[workspace]62members = [63	".ink/abi_gen"64]65exclude = [66	".ink"67]