diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml index 86e7f2c57..6735ec35e 100644 --- a/benchmarks/Cargo.toml +++ b/benchmarks/Cargo.toml @@ -9,9 +9,9 @@ publish = false [dependencies] criterion = { version = "0.3.5", features = ["async", "async_tokio", "html_reports"] } -matrix-sdk-crypto = { path = "../crates/matrix-sdk-crypto" , " version" = "0.5.0" } -matrix-sdk-sled = { path = "../crates/matrix-sdk-sled", default-features = false, features = ["crypto-store"] } -matrix-sdk-test = { path = "../crates/matrix-sdk-test" , " version" = "0.5.0" } +matrix-sdk-crypto = { path = "../crates/matrix-sdk-crypto", version = "0.5.0" } +matrix-sdk-sled = { path = "../crates/matrix-sdk-sled", version = "0.1.0", default-features = false, features = ["crypto-store"] } +matrix-sdk-test = { path = "../crates/matrix-sdk-test", version = "0.5.0" } ruma = "0.6.1" serde_json = "1.0.79" tempfile = "3.3.0" diff --git a/crates/matrix-sdk-appservice/Cargo.toml b/crates/matrix-sdk-appservice/Cargo.toml index a9bc658a7..341fc629e 100644 --- a/crates/matrix-sdk-appservice/Cargo.toml +++ b/crates/matrix-sdk-appservice/Cargo.toml @@ -31,7 +31,7 @@ docs = [] [dependencies] dashmap = "5.2.0" http = "0.2.6" -matrix-sdk = { version = "0.4", path = "../matrix-sdk", default-features = false, features = ["appservice"] } +matrix-sdk = { version = "0.5.0", path = "../matrix-sdk", default-features = false, features = ["appservice"] } percent-encoding = "2.1.0" regex = "1.5.5" ruma = { version = "0.6.1", features = ["client-api-c", "appservice-api-s"] } diff --git a/crates/matrix-sdk/Cargo.toml b/crates/matrix-sdk/Cargo.toml index f5edfb9ae..fcf516b42 100644 --- a/crates/matrix-sdk/Cargo.toml +++ b/crates/matrix-sdk/Cargo.toml @@ -9,7 +9,7 @@ name = "matrix-sdk" readme = "README.md" repository = "https://github.com/matrix-org/matrix-rust-sdk" rust-version = "1.60" -version = "0.4.1" +version = "0.5.0" [package.metadata.docs.rs] features = ["docsrs"] diff --git a/labs/sled-state-inspector/Cargo.toml b/labs/sled-state-inspector/Cargo.toml index d5c4b46c1..5032c59af 100644 --- a/labs/sled-state-inspector/Cargo.toml +++ b/labs/sled-state-inspector/Cargo.toml @@ -8,8 +8,8 @@ publish = false atty = "0.2.14" clap = "3.1.12" futures = { version = "0.3.21", default-features = false, features = ["executor"] } -matrix-sdk-base = { path = "../../crates/matrix-sdk-base" , " version" = "0.5.0" } -matrix-sdk-sled = { path = "../../crates/matrix-sdk-sled" } +matrix-sdk-base = { path = "../../crates/matrix-sdk-base", version = "0.5.0" } +matrix-sdk-sled = { path = "../../crates/matrix-sdk-sled", version = "0.1.0" } ruma = "0.6.1" rustyline = "9.1.2" rustyline-derive = "0.6.0"