-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
105 lines (93 loc) · 2.93 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
[package]
name = "pallet-proofs-dealer"
description = "Pallet for managing, challenging and veryfing proofs submitted by providers, where each provider's information is stored as a Merkle Patricia Trie."
version = "0.1.0"
homepage = { workspace = true }
license = { workspace = true }
authors = { workspace = true }
repository = { workspace = true }
edition = { workspace = true }
[lints]
workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { workspace = true }
hex = { workspace = true, optional = true }
scale-info = { workspace = true }
# Local
pallet-proofs-dealer-runtime-api = { workspace = true }
pallet-storage-providers = { workspace = true, optional = true }
shp-traits = { workspace = true }
shp-file-key-verifier = { workspace = true, optional = true }
shp-file-metadata = { workspace = true, optional = true }
shp-forest-verifier = { workspace = true, optional = true }
# Substrate
frame-benchmarking = { workspace = true, optional = true }
frame-support = { workspace = true }
frame-system = { workspace = true }
sp-keyring = { workspace = true }
sp-runtime = { workspace = true }
sp-std = { workspace = true }
sp-trie = { workspace = true, optional = true }
sp-weights = { workspace = true }
# Frame
pallet-balances = { workspace = true, optional = true }
[dev-dependencies]
serde = { workspace = true }
shp-treasury-funding = { workspace = true }
# Local
pallet-storage-providers = { workspace = true }
pallet-payment-streams = { workspace = true }
shp-constants = { workspace = true }
shp-file-key-verifier = { workspace = true }
shp-file-metadata = { workspace = true }
shp-forest-verifier = { workspace = true }
# Substrate
sp-core = { workspace = true }
sp-io = { workspace = true }
sp-trie = { workspace = true }
# Frame
pallet-balances = { workspace = true }
[features]
default = ["std"]
runtime-benchmarks = [
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"hex",
"pallet-balances/runtime-benchmarks",
"pallet-storage-providers/runtime-benchmarks",
"shp-file-key-verifier/runtime-benchmarks",
"shp-file-metadata/runtime-benchmarks",
"shp-forest-verifier/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"sp-trie",
]
std = [
"codec/std",
"frame-benchmarking?/std",
"frame-support/std",
"frame-system/std",
"pallet-balances/std",
"pallet-payment-streams/std",
"pallet-proofs-dealer-runtime-api/std",
"pallet-storage-providers/std",
"scale-info/std",
"shp-traits/std",
"shp-treasury-funding/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"sp-trie/std",
"sp-weights/std",
]
try-runtime = [
"frame-support/try-runtime",
"frame-system/try-runtime",
"pallet-balances/try-runtime",
"pallet-payment-streams/try-runtime",
"shp-traits/try-runtime",
"shp-treasury-funding/try-runtime",
"sp-runtime/try-runtime",
]