git.delta.rocks / unique-network / refs/commits / 307b048fa24b

difftreelog

source

pallets/nft/Cargo.toml1.9 KiBsourcehistory
1[dependencies.codec]2default-features = false3features = ['derive']4package = 'parity-scale-codec'5version = '1.3.0'67[dependencies.frame-support]8default-features = false9git = 'https://github.com/usetech-llc/substrate.git'10branch = 'rc4_ext_dispatch_reenabled'11version = '2.0.0-rc4'1213[dependencies.frame-system]14default-features = false15git = 'https://github.com/usetech-llc/substrate.git'16branch = 'rc4_ext_dispatch_reenabled'17version = '2.0.0-rc4'18[dev-dependencies.sp-core]19default-features = false20git = 'https://github.com/usetech-llc/substrate.git'21branch = 'rc4_ext_dispatch_reenabled'22version = '2.0.0-rc4'2324[dev-dependencies.sp-io]25default-features = false26git = 'https://github.com/usetech-llc/substrate.git'27branch = 'rc4_ext_dispatch_reenabled'28version = '2.0.0-rc4'2930[dependencies.sp-runtime]31default-features = false32git = 'https://github.com/usetech-llc/substrate.git'33branch = 'rc4_ext_dispatch_reenabled'34version = '2.0.0-rc4'35	36[dependencies]37# third-party dependencies38serde = { version = "1.0.102", features = ["derive"] }39log = "0.4.8"4041[dependencies.sp-std]42default-features = false43git = 'https://github.com/usetech-llc/substrate.git'44branch = 'rc4_ext_dispatch_reenabled'45version = '2.0.0-rc4'4647[dependencies.transaction-payment]48default-features = false49git = 'https://github.com/usetech-llc/substrate.git'50package = 'pallet-transaction-payment'51branch = 'rc4_ext_dispatch_reenabled'52version = '2.0.0-rc4'5354[package]55authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']56description = 'FRAME pallet nft'57edition = '2018'58homepage = 'https://substrate.io'59license = 'Unlicense'60name = 'pallet-nft'61repository = 'https://github.com/substrate-developer-hub/nft/'62version = '2.0.0-rc4'63[package.metadata.docs.rs]64targets = ['x86_64-unknown-linux-gnu']6566[features]67default = ['std']68std = [69    'codec/std',70    "serde/std",71    'frame-support/std',72    'frame-system/std',73    'sp-runtime/std',74    'sp-std/std',75]