-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (51 loc) · 2.5 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (51 loc) · 2.5 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
[package]
authors = ['ChainSafe Systems']
edition = '2021'
homepage = 'https://github.com/ChainSafe/PINT'
license = 'LGPL-3.0-only'
name = 'pint-runtime-common'
repository = 'https://github.com/substrate-developer-hub/substrate-parachain-template'
version = '0.0.1'
[dependencies]
codec = { package = 'parity-scale-codec', version = '2.3.1', default-features = false, features = ['derive']}
frame-support = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.12', default-features = false }
frame-system = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.12', default-features = false }
sp-std = { git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.12', default-features = false }
scale-info = { version = "1.0", default-features = false, features = ["derive"] }
# xcm
xcm = { git = 'https://github.com/paritytech/polkadot', branch = 'release-v0.9.12', default-features = false }
xcm-calls = { path = "../../primitives/xcm-calls", default-features = false }
cumulus-pallet-xcm = { git = 'https://github.com/paritytech/cumulus', branch = 'polkadot-v0.9.12', default-features = false }
# orml
orml-traits = { git = 'https://github.com/open-web3-stack/open-runtime-module-library', branch = 'master', default-features = false }
# chainlink
pallet-chainlink-feed = { git = 'https://github.com/smartcontractkit/chainlink-polkadot', branch = 'polkadot-v0.9.12', default-features = false }
# pint
primitives = { path = '../../primitives/primitives', default-features = false }
pallet-committee = {path = '../../pallets/committee', default-features = false }
pallet-local-treasury = {path = '../../pallets/local-treasury', default-features = false }
pallet-asset-index = {path = '../../pallets/asset-index', default-features = false }
pallet-saft-registry = {path = '../../pallets/saft-registry', default-features = false }
pallet-price-feed = {path = '../../pallets/price-feed', default-features = false }
pallet-remote-asset-manager = { path = '../../pallets/remote-asset-manager', default-features = false }
[features]
default = ['std']
std = [
'codec/std',
"frame-support/std",
'frame-system/std',
'sp-std/std',
'scale-info/std',
"xcm/std",
"xcm-calls/std",
"cumulus-pallet-xcm/std",
"orml-traits/std",
'pallet-asset-index/std',
'pallet-committee/std',
'pallet-local-treasury/std',
'pallet-price-feed/std',
'pallet-remote-asset-manager/std',
'pallet-saft-registry/std',
'pallet-chainlink-feed/std',
"primitives/std",
]