Skip to content
Snippets Groups Projects
Cargo.toml 1.29 KiB
Newer Older
zjb0807's avatar
zjb0807 committed
[package]
name = "orml-nft"
Bryan Chen's avatar
Bryan Chen committed
description = "Non-fungible token pallet provides basic functions to create and manager NFT"
zjb0807's avatar
zjb0807 committed
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/nft"
license = "Apache-2.0"
Bryan Chen's avatar
Bryan Chen committed
version = "0.4.1-dev"
zjb0807's avatar
zjb0807 committed
authors = ["Acala Developers"]
edition = "2018"

[dependencies]
serde = { version = "1.0.124", optional = true }
wangjj9219's avatar
wangjj9219 committed
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
zjb0807's avatar
zjb0807 committed

frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false }
zjb0807's avatar
zjb0807 committed
[dev-dependencies]
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" }
zjb0807's avatar
zjb0807 committed
[features]
default = ["std"]
std = [
	"serde",
zjb0807's avatar
zjb0807 committed
	"codec/std",
	"sp-std/std",
	"sp-runtime/std",
	"frame-support/std",
	"frame-system/std",
]
wangjj9219's avatar
wangjj9219 committed
try-runtime = ["frame-support/try-runtime"]