forked from Supercolony-net/pallet-assets-chain-extension
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
56 lines (51 loc) · 1.41 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
authors = ["727.Ventures <[email protected]>"]
edition = "2021"
name = "pallet-assets-chain-extension"
version = "0.1.1"
license = "MIT"
repository = "https://github.com/Brushfam/pallet-assets-chain-extension"
documentation = "https://github.com/Brushfam/pallet-assets-chain-extension/blob/main/README.md"
homepage = "https://727.ventures"
description = "The repository contains full implementation(ink and substrate parts) of the `pallet-assets` chain extension."
keywords = ["wasm", "smart-contracts", "blockchain", "chain-extension"]
categories = ["no-std", "embedded"]
[dependencies]
# Common deps
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] }
scale-info = { version = "2", default-features = false, features = ["derive"] }
obce = { version = "0.1.0", default-features = false }
# Substrate deps
pallet-assets = { version = "24", default-features = false, optional = true }
# Ink deps
ink = { version = "4.0.0", default-features = false, optional = true }
[features]
default = ["ink-std"]
substrate = [
"obce/substrate",
"pallet-assets",
]
ink-lang = [
"obce/ink",
"ink",
]
std = [
"scale-info/std",
"scale/std",
]
substrate-std = [
"std",
"substrate",
"obce/substrate-std",
"pallet-assets/std",
]
ink-std = [
"std",
"ink-lang",
"obce/ink-std",
"ink/std",
]
runtime-benchmarks = [
"obce/runtime-benchmarks",
"pallet-assets/runtime-benchmarks",
]