mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-02-13 17:12:19 -05:00
53 lines
1.6 KiB
TOML
53 lines
1.6 KiB
TOML
[package]
|
|
name = "matrix-sdk-integration-testing"
|
|
description = "Internal integration testing for matrix-sdk crate"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
license = "Apache-2.0"
|
|
|
|
[package.metadata.release]
|
|
release = false
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# Enable experimental support for encrypting state events; see
|
|
# https://github.com/matrix-org/matrix-rust-sdk/issues/5397.
|
|
experimental-encrypted-state-events = [
|
|
"matrix-sdk/experimental-encrypted-state-events",
|
|
"matrix-sdk-base/experimental-encrypted-state-events"
|
|
]
|
|
|
|
[dev-dependencies]
|
|
anyhow.workspace = true
|
|
assert_matches.workspace = true
|
|
assert_matches2.workspace = true
|
|
assign = "1"
|
|
eyeball.workspace = true
|
|
eyeball-im.workspace = true
|
|
futures = { version = "0.3.29", features = ["executor"] }
|
|
futures-core.workspace = true
|
|
futures-util.workspace = true
|
|
http.workspace = true
|
|
json-structural-diff = "0.2.0"
|
|
matrix-sdk = { workspace = true, default-features = true, features = ["testing", "qrcode"] }
|
|
matrix-sdk-base = { workspace = true, default-features = true, features = ["testing", "qrcode"] }
|
|
matrix-sdk-common.workspace = true
|
|
matrix-sdk-test.workspace = true
|
|
matrix-sdk-test-utils.workspace = true
|
|
matrix-sdk-ui = { workspace = true, default-features = true }
|
|
once_cell.workspace = true
|
|
rand.workspace = true
|
|
reqwest.workspace = true
|
|
serde_json.workspace = true
|
|
similar-asserts.workspace = true
|
|
stream_assert.workspace = true
|
|
tempfile.workspace = true
|
|
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros"] }
|
|
tracing.workspace = true
|
|
wiremock.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|