-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1349a13
commit e81f794
Showing
277 changed files
with
32,589 additions
and
47,390 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,22 @@ | ||
[package] | ||
name = "pallet-kitties" | ||
version = "4.0.0-dev" | ||
description = "FRAME pallet template for defining custom runtime logic." | ||
authors = ["Substrate DevHub <https://github.com/substrate-developer-hub>"] | ||
homepage = "https://substrate.io" | ||
version = "0.1.0" | ||
description = "An NFT Marketplace for Kitties" | ||
authors = ["Shawn Tabrizi <[email protected]>"] | ||
homepage = "https://www.shawntabrizi.com/substrate-collectables-workshop/" | ||
repository = "https://github.com/shawntabrizi/substrate-collectables-workshop" | ||
edition = "2021" | ||
publish = false | ||
repository = "https://github.com/substrate-developer-hub/substrate-node-template/" | ||
|
||
[package.metadata.docs.rs] | ||
targets = ["x86_64-unknown-linux-gnu"] | ||
|
||
[dependencies] | ||
parity-scale-codec = { version = "3.6.1", default-features = false, features = [ | ||
"derive", | ||
] } | ||
scale-info = { version = "2.11.1", default-features = false, features = [ | ||
"derive", | ||
] } | ||
|
||
frame-support = { version = "25.0.0", default-features = false } | ||
frame-system = { version = "25.0.0", default-features = false } | ||
codec = { package = "parity-scale-codec", version = "3.6.12", default-features = false, features = ["derive"] } | ||
scale-info = { version = "2.11.1", default-features = false, features = ["derive"] } | ||
frame = { package = "polkadot-sdk-frame", version = "0.6.0", default-features = false, features = ["experimental", "runtime"] } | ||
|
||
[features] | ||
default = ["std"] | ||
std = [ | ||
"parity-scale-codec/std", | ||
"scale-info/std", | ||
"frame-support/std", | ||
"frame-system/std", | ||
] | ||
default = [ "std" ] | ||
std = [ "codec/std", "frame/std", "scale-info/std" ] | ||
try-runtime = [] |
Oops, something went wrong.