-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathCargo.toml
54 lines (44 loc) · 2.05 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
[package]
authors = ["KILT <info@kilt.io>"]
description = "Lookup the DID for a blockchain account."
edition = "2021"
name = "pallet-did-lookup"
repository = "https://github.com/KILTprotocol/mashnet-node"
version = "1.4.0"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dev-dependencies]
runtime-common = {path = "../../runtimes/common"}
pallet-balances = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-io = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-keystore = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
[dependencies]
codec = {default-features = false, features = ["derive"], package = "parity-scale-codec", version = "2.3.1"}
scale-info = {version = "1.0", default-features = false, features = ["derive"]}
# KILT
kilt-support = {default-features = false, path = "../../support"}
# Substrate dependencies
frame-support = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
frame-system = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-runtime = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-std = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
# benchmarking
frame-benchmarking = {branch = "polkadot-v0.9.13", optional = true, default-features = false, git = "https://github.com/paritytech/substrate"}
sp-io = {branch = "polkadot-v0.9.13", optional = true, default-features = false, git = "https://github.com/paritytech/substrate"}
[features]
default = ["std"]
runtime-benchmarks = [
"frame-benchmarking",
"sp-io",
"kilt-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
]
std = [
"codec/std",
"frame-benchmarking/std",
"frame-support/std",
"frame-system/std",
"scale-info/std",
"sp-runtime/std",
"sp-std/std",
]