matrix-sdk: Bump our deps.
parent
4c6c1d2107
commit
60950044f2
|
@ -28,13 +28,13 @@ socks = ["reqwest/socks"]
|
||||||
docs = ["encryption", "sqlite_cryptostore", "messages"]
|
docs = ["encryption", "sqlite_cryptostore", "messages"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
dashmap = { version = "3.11.10", optional = true }
|
dashmap = { version = "4.0.1", optional = true }
|
||||||
http = "0.2.1"
|
http = "0.2.2"
|
||||||
serde_json = "1.0.59"
|
serde_json = "1.0.61"
|
||||||
thiserror = "1.0.21"
|
thiserror = "1.0.23"
|
||||||
tracing = "0.1.21"
|
tracing = "0.1.22"
|
||||||
url = "2.1.1"
|
url = "2.2.0"
|
||||||
zeroize = "1.1.1"
|
zeroize = "1.2.0"
|
||||||
mime = "0.3.16"
|
mime = "0.3.16"
|
||||||
|
|
||||||
matrix-sdk-common = { version = "0.1.0", path = "../matrix_sdk_common" }
|
matrix-sdk-common = { version = "0.1.0", path = "../matrix_sdk_common" }
|
||||||
|
@ -45,7 +45,7 @@ path = "../matrix_sdk_base"
|
||||||
default_features = false
|
default_features = false
|
||||||
|
|
||||||
[dependencies.reqwest]
|
[dependencies.reqwest]
|
||||||
version = "0.10.8"
|
version = "0.10.10"
|
||||||
default_features = false
|
default_features = false
|
||||||
|
|
||||||
[dependencies.tracing-futures]
|
[dependencies.tracing-futures]
|
||||||
|
@ -57,7 +57,7 @@ features = ["std", "std-future"]
|
||||||
futures-timer = "3.0.2"
|
futures-timer = "3.0.2"
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
|
||||||
version = "0.2.22"
|
version = "0.2.24"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = ["fs", "blocking"]
|
features = ["fs", "blocking"]
|
||||||
|
|
||||||
|
@ -66,16 +66,16 @@ version = "3.0.2"
|
||||||
features = ["wasm-bindgen"]
|
features = ["wasm-bindgen"]
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
async-std = { version = "1.6.5", features = ["unstable"] }
|
async-std = { version = "1.8.0", features = ["unstable"] }
|
||||||
dirs = "3.0.1"
|
dirs = "3.0.1"
|
||||||
matrix-sdk-test = { version = "0.1.0", path = "../matrix_sdk_test" }
|
matrix-sdk-test = { version = "0.1.0", path = "../matrix_sdk_test" }
|
||||||
tokio = { version = "0.2.22", default-features = false, features = ["rt-threaded", "macros"] }
|
tokio = { version = "0.2.24", default-features = false, features = ["rt-threaded", "macros"] }
|
||||||
serde_json = "1.0.59"
|
serde_json = "1.0.61"
|
||||||
tracing-subscriber = "0.2.13"
|
tracing-subscriber = "0.2.15"
|
||||||
tempfile = "3.1.0"
|
tempfile = "3.1.0"
|
||||||
mockito = "0.27.0"
|
mockito = "0.28.0"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
futures = "0.3.6"
|
futures = "0.3.8"
|
||||||
|
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "emoji_verification"
|
name = "emoji_verification"
|
||||||
|
|
|
@ -24,32 +24,32 @@ unstable-synapse-quirks = ["matrix-sdk-common/unstable-synapse-quirks"]
|
||||||
docs = ["encryption", "sqlite_cryptostore", "messages"]
|
docs = ["encryption", "sqlite_cryptostore", "messages"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde = "1.0.117"
|
serde = "1.0.118"
|
||||||
serde_json = "1.0.59"
|
serde_json = "1.0.61"
|
||||||
zeroize = "1.1.1"
|
zeroize = "1.2.0"
|
||||||
tracing = "0.1.21"
|
tracing = "0.1.22"
|
||||||
|
|
||||||
matrix-sdk-common = { version = "0.1.0", path = "../matrix_sdk_common" }
|
matrix-sdk-common = { version = "0.1.0", path = "../matrix_sdk_common" }
|
||||||
matrix-sdk-crypto = { version = "0.1.0", path = "../matrix_sdk_crypto", optional = true }
|
matrix-sdk-crypto = { version = "0.1.0", path = "../matrix_sdk_crypto", optional = true }
|
||||||
|
|
||||||
# Misc dependencies
|
# Misc dependencies
|
||||||
thiserror = "1.0.21"
|
thiserror = "1.0.23"
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
|
||||||
version = "0.2.22"
|
version = "0.2.24"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = ["sync", "fs"]
|
features = ["sync", "fs"]
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
futures = "0.3.6"
|
futures = "0.3.8"
|
||||||
matrix-sdk-test = { version = "0.1.0", path = "../matrix_sdk_test" }
|
matrix-sdk-test = { version = "0.1.0", path = "../matrix_sdk_test" }
|
||||||
http = "0.2.1"
|
http = "0.2.2"
|
||||||
tracing-subscriber = "0.2.13"
|
tracing-subscriber = "0.2.15"
|
||||||
tempfile = "3.1.0"
|
tempfile = "3.1.0"
|
||||||
mockito = "0.27.0"
|
mockito = "0.28.0"
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
||||||
tokio = { version = "0.2.22", default-features = false, features = ["rt-threaded", "macros"] }
|
tokio = { version = "0.2.24", default-features = false, features = ["rt-threaded", "macros"] }
|
||||||
|
|
||||||
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
||||||
wasm-bindgen-test = "0.3.18"
|
wasm-bindgen-test = "0.3.19"
|
||||||
|
|
|
@ -14,7 +14,7 @@ version = "0.1.0"
|
||||||
unstable-synapse-quirks = ["ruma/unstable-synapse-quirks"]
|
unstable-synapse-quirks = ["ruma/unstable-synapse-quirks"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
instant = { version = "0.1.7", features = ["wasm-bindgen", "now"] }
|
instant = { version = "0.1.9", features = ["wasm-bindgen", "now"] }
|
||||||
async-trait = "0.1.42"
|
async-trait = "0.1.42"
|
||||||
|
|
||||||
[dependencies.ruma]
|
[dependencies.ruma]
|
||||||
|
@ -25,7 +25,7 @@ features = ["client-api", "unstable-pre-spec"]
|
||||||
uuid = { version = "0.8.1", default-features = false, features = ["v4", "serde"] }
|
uuid = { version = "0.8.1", default-features = false, features = ["v4", "serde"] }
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
|
||||||
version = "0.2.22"
|
version = "0.2.24"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = ["sync"]
|
features = ["sync"]
|
||||||
|
|
||||||
|
|
|
@ -23,19 +23,19 @@ docs = ["sqlite_cryptostore"]
|
||||||
matrix-sdk-common = { version = "0.1.0", path = "../matrix_sdk_common" }
|
matrix-sdk-common = { version = "0.1.0", path = "../matrix_sdk_common" }
|
||||||
|
|
||||||
olm-rs = { version = "1.0.0", features = ["serde"] }
|
olm-rs = { version = "1.0.0", features = ["serde"] }
|
||||||
getrandom = "0.2.0"
|
getrandom = "0.2.1"
|
||||||
serde = { version = "1.0.117", features = ["derive", "rc"] }
|
serde = { version = "1.0.118", features = ["derive", "rc"] }
|
||||||
serde_json = "1.0.59"
|
serde_json = "1.0.61"
|
||||||
zeroize = { version = "1.1.1", features = ["zeroize_derive"] }
|
zeroize = { version = "1.2.0", features = ["zeroize_derive"] }
|
||||||
url = "2.1.1"
|
url = "2.2.0"
|
||||||
|
|
||||||
# Misc dependencies
|
# Misc dependencies
|
||||||
thiserror = "1.0.21"
|
thiserror = "1.0.23"
|
||||||
tracing = "0.1.21"
|
tracing = "0.1.22"
|
||||||
atomic = "0.5.0"
|
atomic = "0.5.0"
|
||||||
dashmap = "3.11.10"
|
dashmap = "4.0.1"
|
||||||
sha2 = "0.9.1"
|
sha2 = "0.9.2"
|
||||||
aes-gcm = "0.7.0"
|
aes-gcm = "0.8.0"
|
||||||
aes-ctr = "0.6.0"
|
aes-ctr = "0.6.0"
|
||||||
pbkdf2 = { version = "0.6.0", default-features = false }
|
pbkdf2 = { version = "0.6.0", default-features = false }
|
||||||
hmac = "0.10.1"
|
hmac = "0.10.1"
|
||||||
|
@ -43,17 +43,17 @@ base64 = "0.13.0"
|
||||||
byteorder = "1.3.4"
|
byteorder = "1.3.4"
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.sqlx]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.sqlx]
|
||||||
version = "0.4.1"
|
version = "0.4.2"
|
||||||
optional = true
|
optional = true
|
||||||
default-features = false
|
default-features = false
|
||||||
features = ["runtime-tokio-native-tls", "sqlite", "macros"]
|
features = ["runtime-tokio-native-tls", "sqlite", "macros"]
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "0.2.22", default-features = false, features = ["rt-threaded", "macros"] }
|
tokio = { version = "0.2.24", default-features = false, features = ["rt-threaded", "macros"] }
|
||||||
futures = "0.3.6"
|
futures = "0.3.8"
|
||||||
proptest = "0.10.1"
|
proptest = "0.10.1"
|
||||||
serde_json = "1.0.59"
|
serde_json = "1.0.61"
|
||||||
tempfile = "3.1.0"
|
tempfile = "3.1.0"
|
||||||
http = "0.2.1"
|
http = "0.2.2"
|
||||||
matrix-sdk-test = { version = "0.1.0", path = "../matrix_sdk_test" }
|
matrix-sdk-test = { version = "0.1.0", path = "../matrix_sdk_test" }
|
||||||
indoc = "1.0.3"
|
indoc = "1.0.3"
|
||||||
|
|
|
@ -11,9 +11,9 @@ repository = "https://github.com/matrix-org/matrix-rust-sdk"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde_json = "1.0.59"
|
serde_json = "1.0.61"
|
||||||
http = "0.2.1"
|
http = "0.2.2"
|
||||||
matrix-sdk-common = { version = "0.1.0", path = "../matrix_sdk_common" }
|
matrix-sdk-common = { version = "0.1.0", path = "../matrix_sdk_common" }
|
||||||
matrix-sdk-test-macros = { version = "0.1.0", path = "../matrix_sdk_test_macros" }
|
matrix-sdk-test-macros = { version = "0.1.0", path = "../matrix_sdk_test_macros" }
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
serde = "1.0.117"
|
serde = "1.0.118"
|
||||||
|
|
Loading…
Reference in New Issue