forked from gautamdhameja/pallet-did
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
75 lines (65 loc) · 1.66 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
70
71
72
73
74
75
[package]
name = "pallet-did"
version = '2.0.0-rc4'
description = 'Substrate Decentralized ID Pallet'
edition = '2018'
authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']
homepage = 'https://substrate.dev'
repository = 'https://github.com/paritytech/substrate/'
license = 'Unlicense'
[dependencies.serde]
features = ['derive']
optional = true
version = '1.0.101'
[dependencies.codec]
default-features = false
features = ['derive']
package = 'parity-scale-codec'
version = '1.3.1'
[dependencies.sp-runtime]
git = 'https://github.com/paritytech/substrate.git'
default-features = false
tag = 'v2.0.0-rc4'
version = '2.0.0-rc4'
[dependencies.frame-support]
git = 'https://github.com/paritytech/substrate.git'
default-features = false
tag = 'v2.0.0-rc4'
version = '2.0.0-rc4'
[dependencies.frame-system]
git = 'https://github.com/paritytech/substrate.git'
default-features = false
tag = 'v2.0.0-rc4'
version = '2.0.0-rc4'
[dependencies.sp-io]
git = 'https://github.com/paritytech/substrate.git'
default-features = false
tag = 'v2.0.0-rc4'
version = '2.0.0-rc4'
[dependencies.sp-std]
git = 'https://github.com/paritytech/substrate.git'
default-features = false
tag = 'v2.0.0-rc4'
version = '2.0.0-rc4'
[dependencies.pallet-timestamp]
git = 'https://github.com/paritytech/substrate.git'
default_features = false
tag = 'v2.0.0-rc4'
version = '2.0.0-rc4'
[dependencies.sp-core]
git = 'https://github.com/paritytech/substrate.git'
default-features = false
tag = 'v2.0.0-rc4'
version = '2.0.0-rc4'
[features]
default = ['std']
std = [
'serde',
'codec/std',
'frame-support/std',
'sp-runtime/std',
'sp-io/std',
'sp-std/std',
'frame-system/std',
'pallet-timestamp/std',
]