From 11be1947cad3a36180a1799401431f763be03903 Mon Sep 17 00:00:00 2001 From: Volker Mische Date: Mon, 14 Aug 2023 15:54:48 +0200 Subject: [PATCH] feat: allow blst 0.3.10 *or newer* (#58) Some dependents of blstrs might require newer versions of `blst`. Try to relax the requirements of `blst` and allow 0.3.10 or newer (instead of pinning it to 0.3.10 only). --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a4dee5a..128e153 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ rust-version = "1.56.1" rustdoc-args = [ "--html-in-header", "katex-header.html" ] [dependencies] -blst = { version = "=0.3.10", default-features = true } +blst = { version = "0.3.10", default-features = true } rand_core = "0.6" ff = "0.13" group = { version = "0.13", features = ["tests"] }