-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathCargo.toml
69 lines (60 loc) · 2.45 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
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
authors = ["KILT <info@kilt.io>"]
description = "Enables adding and removing decentralized identifiers (DIDs)."
edition = "2018"
name = "did"
repository = "https://github.com/KILTprotocol/mashnet-node"
version = "0.26.0"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[build-dependencies]
substrate-wasm-builder-runner = {version = "3.0.0"}
[dev-dependencies]
env_logger = {version = "0.8.3"}
serde = {version = "1.0.101"}
ctype = {features = ["mock"], path = "../ctype", version = "0.26.0"}
kilt-primitives = {default-features = false, path = "../../primitives"}
[dependencies]
# Internal dependencies
ctype = {optional = true, path = "../ctype", version = "0.26.0"}
kilt-primitives = {default-features = false, path = "../../primitives"}
# External dependencies
env_logger = {default-features = false, optional = true, version = "0.8.3"}
hex = {default-features = false, features = ["alloc"], version = "0.4.2"}
log = {default-features = false, version = "0.4.14"}
codec = {default-features = false, features = ["derive"], package = "parity-scale-codec", version = "2.0.0"}
frame-support = {branch = "polkadot-v0.9.9", default-features = false, git = "https://github.com/paritytech/substrate"}
frame-system = {branch = "polkadot-v0.9.9", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-core = {branch = "polkadot-v0.9.9", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-io = {branch = "polkadot-v0.9.9", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-runtime = {branch = "polkadot-v0.9.9", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-std = {branch = "polkadot-v0.9.9", default-features = false, git = "https://github.com/paritytech/substrate"}
frame-benchmarking = {branch = "polkadot-v0.9.9", default-features = false, git = "https://github.com/paritytech/substrate", optional = true}
sp-keystore = {branch = "polkadot-v0.9.9", default-features = false, git = "https://github.com/paritytech/substrate", optional = true}
[features]
default = ["std"]
mock = [
"ctype",
"env_logger",
"sp-keystore",
]
runtime-benchmarks = [
"frame-benchmarking",
]
std = [
"codec/std",
"frame-support/std",
"frame-system/std",
"kilt-primitives/std",
"hex/std",
"log/std",
"sp-core/std",
"sp-keystore/std",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
]
try-runtime = [
"frame-support/try-runtime",
"kilt-primitives/try-runtime",
]