|
| 1 | +[package] |
| 2 | +name = "pallet-afloat" |
| 3 | +version = "4.0.0-dev" |
| 4 | +description = "" |
| 5 | +authors = ["Hashed <https://github.com/hashed-io"] |
| 6 | +homepage = "https://hashed.io" |
| 7 | +edition = "2021" |
| 8 | +license = "MIT" |
| 9 | +publish = false |
| 10 | +repository = "https://github.com/hashed-io/hashed-substrate" |
| 11 | + |
| 12 | +[package.metadata.docs.rs] |
| 13 | +targets = ["x86_64-unknown-linux-gnu"] |
| 14 | + |
| 15 | +[dependencies] |
| 16 | +log = "0.4" |
| 17 | +codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ |
| 18 | + "derive", |
| 19 | +] } |
| 20 | +serde = { version = "1.0.140", default-features = false, features = ["derive"] } |
| 21 | +scale-info = { version = "2.1.1", default-features = false, features = [ |
| 22 | + "derive" |
| 23 | +] } |
| 24 | +frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } |
| 25 | +frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } |
| 26 | +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false, optional = true } |
| 27 | +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } |
| 28 | +pallet-uniques = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } |
| 29 | +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } |
| 30 | +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } |
| 31 | +pallet-fruniques = { path = "../fruniques", default-features = false, version = "0.1.0-dev" } |
| 32 | +pallet-rbac = { path = "../rbac/", default-features = false, version = "4.0.0-dev" } |
| 33 | +pallet-gated-marketplace = { path = "../gated-marketplace/", default-features = false, version = "4.0.0-dev" } |
| 34 | +pallet-mapped-assets = { path = "../mapped-assets/", default-features = false, version = "4.0.0-dev" } |
| 35 | + |
| 36 | +[dev-dependencies] |
| 37 | +sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } |
| 38 | +sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } |
| 39 | +sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } |
| 40 | +sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } |
| 41 | + |
| 42 | +[features] |
| 43 | +default = ["std"] |
| 44 | +std = [ |
| 45 | + "codec/std", |
| 46 | + "scale-info/std", |
| 47 | + "frame-support/std", |
| 48 | + "frame-system/std", |
| 49 | + "frame-benchmarking/std", |
| 50 | + "sp-std/std", |
| 51 | + "pallet-balances/std", |
| 52 | + "pallet-uniques/std", |
| 53 | + "pallet-fruniques/std", |
| 54 | + "pallet-timestamp/std", |
| 55 | + "pallet-rbac/std", |
| 56 | + "pallet-gated-marketplace/std", |
| 57 | +] |
| 58 | +runtime-benchmarks = ["frame-benchmarking/runtime-benchmarks"] |
| 59 | +try-runtime = ["frame-support/try-runtime"] |
0 commit comments