-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (56 loc) · 1.62 KB
/
Cargo.toml
File metadata and controls
62 lines (56 loc) · 1.62 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
[package]
name = "pallet-intents-coprocessor"
version = "2506.2.0"
edition = "2021"
description = "Pallet intent coprocessor is responsible for intent auctions & governance of intent gateway protocol"
authors = ["Polytope Labs <hello@polytope.technology>"]
license = "Apache-2.0"
repository = "https://github.com/polytope-labs/hyperbridge"
homepage = "https://docs.hyperbridge.network/developers/polkadot/intents"
documentation = "https://docs.rs/pallet-intents"
keywords = [
"substrate",
"polkadot-sdk",
"ISMP",
"interoperability",
"intents",
]
readme = "README.md"
[dependencies]
sp-io = { workspace = true }
primitive-types = { workspace = true }
log = { workspace = true }
codec = { workspace = true }
scale-info = { workspace = true }
anyhow = { workspace = true }
alloy-primitives = { workspace = true }
alloy-sol-macro = { workspace = true }
alloy-sol-types = { workspace = true }
hex-literal = { workspace = true }
crypto-utils = { workspace = true }
ismp = { workspace = true }
pallet-ismp = { workspace = true }
[dependencies.polkadot-sdk]
workspace = true
features = ["frame-support", "frame-system", "sp-runtime", "sp-core", "pallet-balances", "pallet-timestamp"]
[dev-dependencies]
ismp-testsuite = { workspace = true }
[features]
default = ["std"]
std = [
"polkadot-sdk/std",
"primitive-types/std",
"ismp/std",
"log/std",
"scale-info/std",
"anyhow/std",
"alloy-primitives/std",
"crypto-utils/std",
"sp-io/std",
"pallet-ismp/std",
]
runtime-benchmarks = [
"polkadot-sdk/frame-benchmarking",
"polkadot-sdk/runtime-benchmarks",
]
try-runtime = ["polkadot-sdk/try-runtime"]