matrix-rust-sdk/testing/matrix-sdk-test/Cargo.toml

34 lines
943 B
TOML
Raw Normal View History

[package]
authors = ["Damir Jelić <poljar@termina.org.uk>"]
description = "Helpers to write tests for the Matrix SDK"
2021-10-22 08:18:55 +00:00
edition = "2021"
homepage = "https://github.com/matrix-org/matrix-rust-sdk"
keywords = ["matrix", "chat", "messaging", "ruma"]
license = "Apache-2.0"
name = "matrix-sdk-test"
readme = "README.md"
repository = "https://github.com/matrix-org/matrix-rust-sdk"
2022-11-03 14:58:49 +00:00
rust-version = { workspace = true }
2022-09-28 08:15:37 +00:00
version = "0.6.0"
[lib]
test = false
doctest = false
2021-06-04 12:16:24 +00:00
[features]
appservice = []
[dependencies]
http = { workspace = true }
2022-09-28 08:15:37 +00:00
matrix-sdk-test-macros = { version = "0.3.0", path = "../matrix-sdk-test-macros" }
once_cell = { workspace = true }
ruma = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
2023-03-28 18:37:04 +00:00
tokio = { workspace = true, features = ["rt", "macros"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-test = "0.3.33"