[package] authors = ["Parity Technologies "] edition = "2018" name = "cumulus-token-dealer" version = "0.1.0" [dependencies] codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] } frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "rococo-branch" } # Cumulus dependencies cumulus-upward-message = { path = "../../../upward-message", default-features = false } cumulus-primitives = { path = "../../../primitives", default-features = false } # Polkadot dependencies polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "rococo-branch", default-features = false } [features] default = ["std"] std = [ "codec/std", "cumulus-upward-message/std", "cumulus-primitives/std", "frame-support/std", "frame-system/std", "polkadot-parachain/std", ]