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

difftreelog

source

smart_contract/nft/Cargo.toml2.3 KiBsourcehistory
1[package]2name = "nft"3version = "0.1.0"4authors = ["[your_name] <[your_email]>"]5edition = "2018"67[dependencies]89ink_abi = { version = "2", git = "https://github.com/paritytech/ink", tag = "latest-v2", package = "ink_abi", default-features = false, features = ["derive"], optional = true }10ink_primitives = { version = "2", git = "https://github.com/paritytech/ink", tag = "latest-v2", package = "ink_primitives", default-features = false }11ink_core = { version = "2", git = "https://github.com/paritytech/ink", tag = "latest-v2", package = "ink_core", default-features = false }12ink_lang = { version = "2", git = "https://github.com/paritytech/ink", tag = "latest-v2", package = "ink_lang", default-features = false }13scale = { package = "parity-scale-codec", version = "1.2", default-features = false, features = ["derive"] }1415sp-core = { git = "https://github.com/paritytech/substrate/", package = "sp-core", default-features = false }16sp-runtime = { git = "https://github.com/paritytech/substrate/", package = "sp-runtime", default-features = false }17sp-io = { git = "https://github.com/paritytech/substrate/", package = "sp-io", default-features = false, features = ["disable_panic_handler", "disable_oom", "disable_allocator"] }18pallet-indices = { git = "https://github.com/paritytech/substrate/", package = "pallet-indices", default-features = false }192021[dependencies.type-metadata]22git = "https://github.com/type-metadata/type-metadata.git"23rev = "02eae9f35c40c943b56af5b60616219f2b72b47d"24default-features = false25features = ["derive"]26optional = true2728[lib]29name = "nft"30path = "lib.rs"31crate-type = [32	# Used for normal contract Wasm blobs.33	"cdylib",34	# Required for ABI generation, and using this contract as a dependency.35	# If using `cargo contract build`, it will be automatically disabled to produce a smaller Wasm binary36	"rlib",37]3839[features]40default = ["test-env"]41std = [42    "ink_abi/std",43    "ink_core/std",44    "ink_primitives/std",45    "scale/std",46    "type-metadata/std",47]48test-env = [49    "std",50    "ink_lang/test-env",51]52ink-generate-abi = [53    "std",54    "ink_abi",55    "type-metadata",56    "ink_core/ink-generate-abi",57    "ink_lang/ink-generate-abi",58]59ink-as-dependency = []6061[profile.release]62panic = "abort"63lto = true64opt-level = "z"65overflow-checks = true6667[workspace]68members = [69	".ink/abi_gen"70]71exclude = [72	".ink"73]