forked from Cardinal-Cryptography/wAZERO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (27 loc) · 848 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
[package]
name = "wrapped-azero"
version = "0.1.0"
edition = "2021"
authors = ["Cardinal"]
homepage = "https://github.com/Cardinal-Cryptography/wAZERO"
repository = "https://github.com/Cardinal-Cryptography/wAZERO"
license-file = "LICENSE.md"
readme = "README.md"
description = "Smart contract for AZERO coin wrapped as a PSP22 token"
exclude = [ ".github/*" ]
[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 }
psp22 = { version = "0.2", default-features = false }
[lib]
path = "lib.rs"
[features]
default = ["std"]
std = [
"ink/std",
"scale/std",
"scale-info/std",
"psp22/std",
]
ink-as-dependency = []