From f51e196313c45586488786e23751c1cab58a6327 Mon Sep 17 00:00:00 2001 From: Maxim Vezenov Date: Thu, 1 Jun 2023 11:17:04 +0100 Subject: [PATCH] fix: Add `lib` crate-type to build (#215) add lib crate type --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c76b30a3..2666535c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] -crate-type = ["cdylib"] +crate-type = ["cdylib", "lib"] [dependencies] acvm = { version = "0.12.0", features = ["bn254"] }