Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rs-matter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ ccm = { version = "0.5", default-features = false, features = ["alloc"], optiona
p256 = { version = "0.13", default-features = false, features = ["arithmetic", "ecdh", "ecdsa"], optional = true }
sec1 = { version = "0.7", default-features = false, optional = true }
elliptic-curve = { version = "0.13", optional = true }
crypto-bigint = { version = "0.5", default-features = false, optional = true }
crypto-bigint = { version = "0.6", default-features = false, optional = true }
rand_core = { version = "0.6", default-features = false, optional = true }
x509-cert = { version = "0.2", default-features = false, features = ["pem"], optional = true } # TODO: requires `alloc`

Expand Down
2 changes: 2 additions & 0 deletions rs-matter/src/crypto/openssl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
* limitations under the License.
*/

#![allow(deprecated)] // Remove this once `hmac` updates to `generic-array` 1.x

use core::fmt::{self, Debug};

use crate::error::{Error, ErrorCode};
Expand Down
2 changes: 2 additions & 0 deletions rs-matter/src/crypto/rustcrypto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
* limitations under the License.
*/

#![allow(deprecated)] // Remove this once `ccm` and `elliptic_curve` update to `generic-array` 1.x

use core::convert::{TryFrom, TryInto};
use core::mem::MaybeUninit;

Expand Down
3 changes: 2 additions & 1 deletion rs-matter/src/sc/crypto/rustcrypto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
* limitations under the License.
*/

use crypto_bigint::Encoding;
#![allow(deprecated)] // Remove this once `ccm` and `elliptic_curve` update to `generic-array` 1.x

use crypto_bigint::NonZero;
use crypto_bigint::U384;
use elliptic_curve::ops::*;
Expand Down