-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (69 loc) · 2.99 KB
/
Cargo.toml
File metadata and controls
75 lines (69 loc) · 2.99 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
authors = ["KILT <info@kilt.io>"]
description = "Enables adding and revoking public credentials."
edition = "2021"
name = "public-credentials"
repository = "https://github.com/KILTprotocol/mashnet-node"
version = "1.6.2"
[dev-dependencies]
# attestation = {features = ["mock"], path = "../attestation"}
ctype = {features = ["mock"], path = "../ctype"}
kilt-support = {features = ["mock"], path = "../../support"}
pallet-balances = {branch = "polkadot-v0.9.23", git = "https://github.com/paritytech/substrate"}
serde = "1.0.137"
sp-core = {branch = "polkadot-v0.9.23", git = "https://github.com/paritytech/substrate"}
sp-io = {branch = "polkadot-v0.9.23", git = "https://github.com/paritytech/substrate"}
sp-keystore = {branch = "polkadot-v0.9.23", git = "https://github.com/paritytech/substrate"}
[dependencies]
codec = {package = "parity-scale-codec", version = "3.1.2", default-features = false, features = ["derive"]}
log = "0.4.17"
scale-info = {version = "2.1.1", default-features = false, features = ["derive"]}
serde = {version = "1.0.137", optional = true}
# Internal dependencies
# attestation = {default-features = false, path = "../attestation"}
ctype = {default-features = false, path = "../ctype"}
kilt-support = {default-features = false, path = "../../support"}
#External dependencies
frame-benchmarking = {branch = "polkadot-v0.9.23", default-features = false, git = "https://github.com/paritytech/substrate", optional = true}
frame-support = {branch = "polkadot-v0.9.23", default-features = false, git = "https://github.com/paritytech/substrate"}
frame-system = {branch = "polkadot-v0.9.23", default-features = false, git = "https://github.com/paritytech/substrate"}
pallet-balances = {branch = "polkadot-v0.9.23", default-features = false, git = "https://github.com/paritytech/substrate", optional = true}
sp-core = {branch = "polkadot-v0.9.23", default-features = false, git = "https://github.com/paritytech/substrate", optional = true}
sp-io = {branch = "polkadot-v0.9.23", default-features = false, git = "https://github.com/paritytech/substrate", optional = true}
sp-keystore = {branch = "polkadot-v0.9.23", default-features = false, git = "https://github.com/paritytech/substrate", optional = true}
sp-runtime = {branch = "polkadot-v0.9.23", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-std = {branch = "polkadot-v0.9.23", default-features = false, git = "https://github.com/paritytech/substrate"}
[features]
default = ["std"]
mock = [
"pallet-balances",
"serde",
"sp-core",
"sp-io",
"sp-keystore",
]
runtime-benchmarks = [
"frame-benchmarking",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"kilt-support/runtime-benchmarks",
"sp-core",
]
std = [
"codec/std",
# "attestation/std",
"ctype/std",
"frame-support/std",
"frame-system/std",
"kilt-support/std",
"log/std",
"pallet-balances/std",
"scale-info/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
]
try-runtime = [
"frame-support/try-runtime",
]