Contracts: Add benchmarks to include files (#2022)

Project that includes pallet-contracts via crates.io will fail to run 
```bash
cargo check --features=runtime-benchmarks
```

without the currently not included benchmarks files
This commit is contained in:
PG Herveou
2023-10-25 09:47:54 +02:00
committed by GitHub
parent ff3a3bca44
commit 3148063a6f
+1 -1
View File
@@ -9,7 +9,7 @@ homepage = "https://substrate.io"
repository.workspace = true
description = "FRAME pallet for WASM contracts"
readme = "README.md"
include = ["src/**/*", "build.rs", "README.md", "CHANGELOG.md"]
include = ["src/**/*", "benchmarks/**", "build.rs", "README.md", "CHANGELOG.md"]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]