From 52ed7f255bcaf7b8413dbf9f7ce9dc41afc9cf90 Mon Sep 17 00:00:00 2001 From: Igor Postelnik Date: Wed, 4 Sep 2024 22:19:07 -0500 Subject: [PATCH] Turn off default features of chrono. This reduces possible conflicts on non-browser WASM platforms. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ffcd109..cd889da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ default-target = "x86_64-unknown-linux-gnu" [dependencies] base64ct = { version = "1.6", features = ["std"] } bytes = { version = "1.6" } -chrono = { version = "0.4", features = ["serde"] } +chrono = { version = "0.4", features = ["serde"], default-features = false } der = { version = "0.7.9", optional = true } digest = { version = "0.10" } ecdsa = { version = "0.16", features = ["signing", "der"], optional = true }