Skip to content

Commit a6c962b

Browse files
committed
chore: Fix the compilation of the benchmarks outside of the workspace root
The workspace root enables some features which are required to compile the benchmarks, but if you decide to just compile the benchmarks these features won't be enabled since they aren't specified in the Cargo.toml file of the benchmarks. Let's define all the required features so compilation works in both cases.
1 parent 306a9f7 commit a6c962b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmarks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ matrix-sdk-base = { workspace = true }
1313
matrix-sdk-crypto = { workspace = true }
1414
matrix-sdk-sqlite = { workspace = true, features = ["crypto-store"] }
1515
matrix-sdk-test = { workspace = true }
16-
matrix-sdk = { workspace = true }
16+
matrix-sdk = { workspace = true, features = ["native-tls", "e2e-encryption", "sqlite"] }
1717
ruma = { workspace = true }
1818
serde = { workspace = true }
1919
serde_json = { workspace = true }

0 commit comments

Comments
 (0)