mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-05-07 23:44:53 -04:00
28 lines
894 B
TOML
28 lines
894 B
TOML
[package]
|
|
name = "matrix-sdk-integration-testing"
|
|
description = "Internal integration testing for matrix-sdk crate"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[features]
|
|
# activate to steal helper functions from this crate for other testing
|
|
helpers = []
|
|
|
|
[dependencies]
|
|
assert_matches = { workspace = true }
|
|
assert_matches2 = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
assign = "1"
|
|
ctor = { workspace = true }
|
|
eyeball-im = { workspace = true }
|
|
futures-core = { workspace = true }
|
|
futures-util = { workspace = true }
|
|
matrix-sdk = { path = "../../crates/matrix-sdk", features = ["testing"] }
|
|
matrix-sdk-ui = { path = "../../crates/matrix-sdk-ui" }
|
|
once_cell = { workspace = true }
|
|
tempfile = "3.3.0"
|
|
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros"] }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
|