[package] name = "edge-signaling" version = "1.0.0" authors = ["Jake Naviasky , Drew Stone "] edition = "2018" license = "GPL-3.0-or-later WITH Classpath-exception-2.0" description = "Edgeware signaling module" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] [dependencies] serde = { version = "1.0", default-features = false, optional = true } serde_derive = { version = "1.0", optional = true } safe-mix = { version = "1.0", default-features = false } codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] } sp-std = { version = "2.0.0", git = "https://github.com/hicommonwealth/substrate.git", branch = "master", default-features = false } sp-runtime = { version = "2.0.0", git = "https://github.com/hicommonwealth/substrate.git", branch = "master", default-features = false } frame-support = { version = "2.0.0", git = "https://github.com/hicommonwealth/substrate.git", branch = "master", default-features = false } frame-system = { version = "2.0.0", git = "https://github.com/hicommonwealth/substrate.git", branch = "master", default-features = false } pallet-balances = { version = "2.0.0", git = "https://github.com/hicommonwealth/substrate.git", branch = "master", default-features = false } voting = { version = "1.0.0", package ="edge-voting", path = "../edge-voting", default-features = false } [dev-dependencies] sp-io = { version = "2.0.0", git = "https://github.com/hicommonwealth/substrate.git", branch = "master", default-features = false } sp-core = { version = "2.0.0", git = "https://github.com/hicommonwealth/substrate.git", branch = "master", default-features = false } [features] default = ["std"] std = [ "serde", "serde_derive", "safe-mix/std", "codec/std", "sp-std/std", "sp-runtime/std", "pallet-balances/std", "frame-support/std", "frame-system/std", "voting/std", ]