@@ -17,15 +17,14 @@ targets = ["x86_64-unknown-linux-gnu"]
1717parity-scale-codec = { workspace = true , features = [" derive" ] }
1818scale-info = { workspace = true , features = [" derive" ] }
1919# Substrate
20- frame-benchmarking = { workspace = true }
20+ frame-benchmarking = { workspace = true , optional = true }
2121frame-support = { workspace = true }
2222frame-system = { workspace = true }
2323pallet-assets = { workspace = true }
2424sp-arithmetic = { workspace = true }
2525sp-core = { workspace = true }
2626sp-runtime = { workspace = true }
2727sp-std = { workspace = true }
28-
2928# External
3029log = { workspace = true }
3130substrate-fixed = { workspace = true }
@@ -47,13 +46,24 @@ runtime-benchmarks = [
4746 " pallet-assets/runtime-benchmarks" ,
4847 " pallet-balances/runtime-benchmarks" ,
4948]
49+
5050std = [
51- " frame-benchmarking/std" ,
51+ " frame-benchmarking? /std" ,
5252 " frame-support/std" ,
5353 " frame-system/std" ,
54+ " log/std" ,
5455 " pallet-assets/std" ,
56+ " pallet-balances/std" ,
5557 " parity-scale-codec/std" ,
5658 " scale-info/std" ,
59+ " sp-arithmetic/std" ,
60+ " sp-core/std" ,
61+ " sp-runtime/std" ,
62+ " sp-std/std" ,
5763 " substrate-fixed/std" ,
5864]
59- try-runtime = [" frame-support/try-runtime" , " frame-system/try-runtime" ]
65+ try-runtime = [
66+ " frame-support/try-runtime" ,
67+ " frame-system/try-runtime" ,
68+ " pallet-assets/try-runtime" ,
69+ ]
0 commit comments