From 63cf24e38b157e18e0edc6e6fb58fdd4ae7ac51d Mon Sep 17 00:00:00 2001 From: thekuwayama Date: Sun, 2 Jul 2023 15:56:34 +0900 Subject: [PATCH] modify: specify mbedtls version --- matter/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matter/Cargo.toml b/matter/Cargo.toml index 9de56a41..ab965ba5 100644 --- a/matter/Cargo.toml +++ b/matter/Cargo.toml @@ -46,7 +46,7 @@ async-channel = "1.8" # crypto openssl = { git = "https://github.com/sfackler/rust-openssl", optional = true } foreign-types = { version = "0.3.2", optional = true } -mbedtls = { git = "https://github.com/fortanix/rust-mbedtls", optional = true } +mbedtls = { version = "0.9", optional = true } sha2 = { version = "0.10", default-features = false, optional = true } hmac = { version = "0.12", optional = true } pbkdf2 = { version = "0.12", optional = true }