chore: Change TOML inline tables to be single-line consistently

This commit is contained in:
Jonas Platte
2022-04-29 12:17:53 +02:00
parent 82164b098a
commit dfd193e3b0
2 changed files with 2 additions and 8 deletions

View File

@@ -55,10 +55,7 @@ ruma = { version = "0.6.1", features = ["client-api-c", "signatures"] }
futures = { version = "0.3.21", default-features = false, features = ["executor"] }
http = "0.2.6"
matrix-sdk-test = { version = "0.4.0", path = "../matrix-sdk-test" }
tokio = { version = "1.17.0", default-features = false, features = [
"rt-multi-thread",
"macros",
] }
tokio = { version = "1.17.0", default-features = false, features = ["rt-multi-thread", "macros"] }
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.3.30"

View File

@@ -32,7 +32,4 @@ matrix-sdk-crypto = { path = "../matrix-sdk-crypto", features = ["testing"] }
matrix-sdk-test = { version = "0.4.0", path = "../matrix-sdk-test" }
once_cell = "1.10.0"
tempfile = "3.3.0"
tokio = { version = "1.17.0", default-features = false, features = [
"rt-multi-thread",
"macros",
] }
tokio = { version = "1.17.0", default-features = false, features = ["rt-multi-thread", "macros"] }