Skip to content

Commit

Permalink
deps: Use workspace deps
Browse files Browse the repository at this point in the history
  • Loading branch information
cdamian committed Dec 1, 2023
1 parent dc1d46f commit 4642c6a
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions pallets/restricted-xtokens/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
[package]
name = "pallet-restricted-xtokens"
authors = ["Centrifuge <[email protected]>"]
authors.workspace = true
description = "A wrapper pallet around orml-xtokens to allow restricting transfers"
edition = "2021"
license = "LGPL-3.0"
repository = "https://github.com/centrifuge/centrifuge-chain"
version = "3.0.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
version = "0.0.1"

[dependencies]
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
scale-info = { version = "2.1.2", default-features = false, features = ["derive"] }
serde = { version = "1.0.136", optional = true }
codec = { package = "parity-scale-codec", workspace = true }
scale-info = { workspace = true }
serde = { workspace = true, optional = true }

# substrate
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.43" }
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "polkadot-v0.9.43" }
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.43" }
frame-support = { workspace = true }
frame-system = { workspace = true }
sp-std = { workspace = true }

# orml
orml-xtokens = { git = "https://github.com/open-web3-stack/open-runtime-module-library", default-features = false, branch = "polkadot-v0.9.43" }
orml-traits = { git = "https://github.com/open-web3-stack/open-runtime-module-library", default-features = false, branch = "polkadot-v0.9.43" }
orml-xtokens = { workspace = true }
orml-traits = { workspace = true }

# polkadot
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false , branch = "release-v0.9.43" }
xcm = { workspace = true }

# local
cfg-traits = { path = "../../libs/traits", default-features = false }
cfg-traits = { workspace = true }

[features]
default = ["std"]
Expand Down

0 comments on commit 4642c6a

Please sign in to comment.