forked from ComposableFi/composable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
94 lines (85 loc) · 3.71 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
[package]
authors = ["Composable Developers"]
description = "Provides reward mechanism for LP tokens"
edition = "2021"
homepage = "https://composable.finance"
name = "pallet-liquid-staking"
version = "1.0.0"
[dependencies]
parity-scale-codec = { workspace = true, default-features = false, features = [
'max-encoded-len',
] }
frame-support = { workspace = true }
frame-system = { workspace = true }
pallet-utility = { workspace = true }
sp-runtime = { workspace = true }
sp-std = { workspace = true }
sp-trie = { workspace = true }
xcm = { workspace = true }
pallet-xcm = { workspace = true }
scale-info = { workspace = true, features = ['derive'] }
polkadot-parachain = { workspace = true }
polkadot-primitives = { workspace = true }
cumulus-primitives-core = { workspace = true }
pallet-xcm-helper = { path = '../pallet-xcm-helper', default-features = false }
primitives = { path = "../../runtime/primitives", default-features = false }
[dev-dependencies]
primitives = { path = "../../runtime/primitives", default-features = false }
pallet-babe = { workspace = true, features = ['std'] }
pallet-balances = { workspace = true, features = ['std'] }
pallet-session = { workspace = true, features = ['std'] }
pallet-staking = { workspace = true, features = ['std'] }
pallet-timestamp = { workspace = true, features = ['std'] }
serde = { workspace = true }
sp-core = { workspace = true, features = ['std'] }
sp-io = { workspace = true, features = ['std'] }
sp-state-machine = { workspace = true }
pallet-assets-registry = { path = "../assets-registry" }
# kusama-runtime = { workspace = true, features = ['std'] }
# polkadot-core-primitives = { workspace = true }
polkadot-parachain = { workspace = true, features = ['std'] }
# polkadot-runtime-parachains = { workspace = true }
xcm-builder = { workspace = true, features = ['std'] }
xcm-executor = { workspace = true, features = ['std'] }
# xcm-simulator = { workspace = true }
kusama-runtime = { git = 'https://github.com/paritytech/polkadot.git', branch = 'release-v0.9.43' }
polkadot-core-primitives = { git = 'https://github.com/paritytech/polkadot.git', branch = 'release-v0.9.43' }
polkadot-runtime-parachains = { git = 'https://github.com/paritytech/polkadot.git', branch = 'release-v0.9.43' }
xcm-simulator = { git = 'https://github.com/paritytech/polkadot.git', branch = 'release-v0.9.43' }
cumulus-pallet-dmp-queue = { workspace = true, features = ['std'] }
cumulus-pallet-parachain-system = { workspace = true, features = ['std'] }
cumulus-pallet-xcm = { workspace = true, features = ['std'] }
cumulus-pallet-xcmp-queue = { workspace = true, features = ['std'] }
parachain-info = { workspace = true, features = ['std'] }
hex = '0.4.3'
orml-traits = { workspace = true, features = ['std'] }
orml-xcm-support = { workspace = true, features = ['std'] }
orml-xtokens = { workspace = true, features = ['std'] }
orml-unknown-tokens = { workspace = true, default-features = false }
pallet-assets = { path = "../assets" }
orml-tokens = { workspace = true }
composable-support = { path = "../composable-support", default-features = false }
pallet-message-queue = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.43" }
composable-traits = { path = "../composable-traits", default-features = false }
[features]
default = ["std"]
std = [
'cumulus-primitives-core/std',
'frame-support/std',
'frame-system/std',
'pallet-utility/std',
'pallet-xcm-helper/std',
'pallet-xcm/std',
'parity-scale-codec/std',
'polkadot-parachain/std',
'polkadot-primitives/std',
'primitives/std',
'scale-info/std',
'sp-runtime/std',
'sp-std/std',
'sp-trie/std',
'xcm/std',
"composable-support/std",
"composable-traits/std",
]
runtime-benchmarks = []