matrix-sdk: More cleanup in the deps.

master
Damir Jelić 2020-05-08 13:54:46 +02:00
parent 8a7aefac3b
commit 4e0bef064f
4 changed files with 8 additions and 10 deletions

View File

@ -21,15 +21,13 @@ futures = "0.3.4"
http = "0.2.1"
reqwest = "0.10.4"
serde_json = "1.0.52"
thiserror = "1.0.16"
tracing = "0.1.13"
url = "2.1.1"
uuid = { version = "0.8.1", features = ["v4"] }
matrix-sdk-common = { version = "0.1.0", path = "../matrix_sdk_common" }
# Misc dependencies
thiserror = "1.0.16"
tracing = "0.1.13"
[dependencies.matrix-sdk-base]
version = "0.1.0"
path = "../matrix_sdk_base"

View File

@ -1,6 +1,6 @@
[package]
authors = ["Damir Jelić <poljar@termina.org.uk"]
description = "A high level Matrix client-server library."
description = "The base component to build a Matrix client library."
edition = "2018"
homepage = "https://github.com/matrix-org/matrix-rust-sdk"
keywords = ["matrix", "chat", "messaging", "ruma", "nio"]
@ -22,8 +22,8 @@ async-trait = "0.1.30"
serde = "1.0.106"
serde_json = "1.0.52"
matrix-sdk-common = { path = "../matrix_sdk_common" }
matrix-sdk-crypto = { path = "../matrix_sdk_crypto", optional = true }
matrix-sdk-common = { version = "0.1.0", path = "../matrix_sdk_common" }
matrix-sdk-crypto = { version = "0.1.0", path = "../matrix_sdk_crypto", optional = true }
# Misc dependencies
thiserror = "1.0.16"

View File

@ -18,7 +18,7 @@ sqlite-cryptostore = ["sqlx"]
futures = "0.3.4"
async-trait = "0.1.30"
matrix-sdk-common = { path = "../matrix_sdk_common" }
matrix-sdk-common = { version = "0.1.0", path = "../matrix_sdk_common" }
olm-rs = { version = "0.5.0", features = ["serde"] }
serde = { version = "1.0.106", features = ["derive"] }
@ -45,7 +45,7 @@ default-features = false
features = ["sync", "time"]
[dependencies.sqlx]
version = "0.3.4"
version = "0.3.5"
optional = true
default-features = false
features = ["runtime-tokio", "sqlite"]

View File

@ -12,5 +12,5 @@ version = "0.1.0"
[dependencies]
serde_json = "1.0.52"
http = "*"
http = "0.2.1"
matrix-sdk-common = { version = "0.1.0", path = "../matrix_sdk_common" }