Diener workspacify

Signed-off-by: alvicsam <alvicsam@gmail.com>
This commit is contained in:
alvicsam
2023-08-25 11:05:17 +02:00
parent 8ba894c0bc
commit f441a5fc93
422 changed files with 5044 additions and 4598 deletions
@@ -14,19 +14,19 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
frame-election-provider-solution-type = { version = "4.0.0-dev", path = "solution-type" }
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
sp-arithmetic = { version = "16.0.0", default-features = false, path = "../../primitives/arithmetic" }
sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../primitives/npos-elections" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
frame-election-provider-solution-type = { path = "solution-type" }
frame-support = { path = "../support", default-features = false}
frame-system = { path = "../system", default-features = false}
sp-arithmetic = { path = "../../primitives/arithmetic", default-features = false}
sp-npos-elections = { path = "../../primitives/npos-elections", default-features = false}
sp-runtime = { path = "../../primitives/runtime", default-features = false}
sp-std = { path = "../../primitives/std", default-features = false}
sp-core = { path = "../../primitives/core", default-features = false}
[dev-dependencies]
rand = { version = "0.8.5", features = ["small_rng"] }
sp-io = { version = "23.0.0", path = "../../primitives/io" }
sp-npos-elections = { version = "4.0.0-dev", path = "../../primitives/npos-elections" }
sp-io = { path = "../../primitives/io" }
sp-npos-elections = { path = "../../primitives/npos-elections" }
[features]
default = [ "std" ]
@@ -15,12 +15,12 @@ targets = ["x86_64-unknown-linux-gnu"]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = [
"derive",
] }
frame-benchmarking = { version = "4.0.0-dev", default-features = false, optional = true, path = "../../benchmarking" }
frame-election-provider-support = { version = "4.0.0-dev", default-features = false, path = ".." }
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" }
sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/npos-elections" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../../../primitives/runtime" }
sp-std = { version = "8.0.0", default-features = false, path = "../../../primitives/std" }
frame-benchmarking = { path = "../../benchmarking", default-features = false, optional = true}
frame-election-provider-support = { path = "..", default-features = false}
frame-system = { path = "../../system", default-features = false}
sp-npos-elections = { path = "../../../primitives/npos-elections", default-features = false}
sp-runtime = { path = "../../../primitives/runtime", default-features = false}
sp-std = { path = "../../../primitives/std", default-features = false}
[features]
default = [ "std" ]
@@ -23,8 +23,8 @@ proc-macro-crate = "1.1.3"
[dev-dependencies]
parity-scale-codec = "3.6.1"
scale-info = "2.1.1"
sp-arithmetic = { version = "16.0.0", path = "../../../primitives/arithmetic" }
sp-arithmetic = { path = "../../../primitives/arithmetic" }
# used by generate_solution_type:
frame-election-provider-support = { version = "4.0.0-dev", path = ".." }
frame-support = { version = "4.0.0-dev", path = "../../support" }
frame-election-provider-support = { path = ".." }
frame-support = { path = "../../support" }
trybuild = "1.0.74"
@@ -19,13 +19,13 @@ rand = { version = "0.8", features = ["std", "small_rng"] }
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
frame-election-provider-solution-type = { version = "4.0.0-dev", path = ".." }
frame-election-provider-support = { version = "4.0.0-dev", path = "../.." }
sp-arithmetic = { version = "16.0.0", path = "../../../../primitives/arithmetic" }
sp-runtime = { version = "24.0.0", path = "../../../../primitives/runtime" }
frame-election-provider-solution-type = { path = ".." }
frame-election-provider-support = { path = "../.." }
sp-arithmetic = { path = "../../../../primitives/arithmetic" }
sp-runtime = { path = "../../../../primitives/runtime" }
# used by generate_solution_type:
sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../../../primitives/npos-elections" }
frame-support = { version = "4.0.0-dev", path = "../../../support" }
sp-npos-elections = { path = "../../../../primitives/npos-elections", default-features = false}
frame-support = { path = "../../../support" }
[[bin]]
name = "compact"