-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
34 lines (29 loc) · 907 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "psp34"
version = "0.2.1"
edition = "2021"
authors = ["Cardinal"]
homepage = "https://github.com/Cardinal-Cryptography/PSP34"
repository = "https://github.com/Cardinal-Cryptography/PSP34"
license = "Apache-2.0"
readme = "README.md"
description = "Minimal implementation of PSP34 token standard in pure ink!"
exclude = [ ".github/*" ]
keywords = ["smart-contract", "token", "PSP34", "ink"]
categories = ["cryptography::cryptocurrencies", "wasm"]
[dependencies]
ink = { version = "4.3", default-features = false }
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] }
scale-info = { version = "2.9", default-features = false, features = ["derive"], optional = true }
[lib]
path = "lib.rs"
[features]
default = ["std"]
std = [
"ink/std",
"scale/std",
"scale-info/std",
]
enumerable = []
contract = []
ink-as-dependency = []