This repository has been archived by the owner on Nov 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
137 lines (118 loc) · 3.14 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
[package]
name = "pallet-teerex"
description = "The remote attestation registry and verification pallet for integritee blockchains and parachains"
version = "0.9.0"
authors = ["Integritee AG"]
homepage = "https://integritee.network/"
repository = "https://github.com/integritee-network/pallet-teerex/"
license = "Apache-2.0"
edition = "2018"
resolver = "2"
[workspace]
members = [
'ias-verify',
]
[dependencies]
serde = { features = ['derive'], optional = true, version = '1.0.101' }
log = { version = "0.4.14", default-features = false }
hex-literal = { version = "0.3.2", optional = true }
[dependencies.codec]
default-features = false
features = ['derive']
package = 'parity-scale-codec'
version = '2.0.0'
[dependencies.ias-verify]
default-features = false
path = './ias-verify'
[dependencies.frame-support]
default-features = false
git = "https://github.com/paritytech/substrate.git"
branch = "master"
version = "4.0.0-dev"
[dependencies.frame-system]
default-features = false
package = 'frame-system'
git = "https://github.com/paritytech/substrate.git"
branch = "master"
version = "4.0.0-dev"
[dependencies.sp-io]
default-features = false
git = "https://github.com/paritytech/substrate.git"
branch = "master"
version = "4.0.0-dev"
[dependencies.sp-core]
default-features = false
git = "https://github.com/paritytech/substrate.git"
branch = "master"
version = "4.0.0-dev"
[dependencies.sp-runtime]
default-features = false
git = "https://github.com/paritytech/substrate.git"
branch = "master"
version = "4.0.0-dev"
[dependencies.sp-std]
default-features = false
git = "https://github.com/paritytech/substrate.git"
branch = "master"
version = "4.0.0-dev"
[dependencies.timestamp]
default-features = false
package = "pallet-timestamp"
git = "https://github.com/paritytech/substrate.git"
branch = "master"
version = "4.0.0-dev"
## benchmarking stuff
[dependencies.frame-benchmarking]
default-features = false
optional = true
git = "https://github.com/paritytech/substrate.git"
branch = "master"
version = "4.0.0-dev"
[dependencies.pallet-balances]
optional = true
default-features = false
git = "https://github.com/paritytech/substrate.git"
branch = "master"
version = "4.0.0-dev"
[dev-dependencies]
hex-literal = "*"
env_logger = "0.7.1"
log = "*"
[dev-dependencies.externalities]
package = "sp-externalities"
git = "https://github.com/paritytech/substrate.git"
branch = "master"
version = "0.10.0-dev"
[dev-dependencies.sp-keyring]
git = "https://github.com/paritytech/substrate.git"
branch = "master"
version = "4.0.0-dev"
[dev-dependencies.pallet-balances]
git = "https://github.com/paritytech/substrate.git"
branch = "master"
version = "4.0.0-dev"
[features]
default = ['std']
std = [
'serde',
'codec/std',
'frame-support/std',
'frame-system/std',
'ias-verify/std',
'sp-core/std',
'sp-io/std',
'sp-runtime/std',
'sp-std/std',
'timestamp/std',
# benchmarking stuff
'frame-benchmarking/std',
"pallet-balances/std",
]
runtime-benchmarks = [
'frame-benchmarking',
"hex-literal",
"pallet-balances",
"timestamp/runtime-benchmarks"
]
# allow workers to register without remote attestation for dev purposes
skip-ias-check = []