forked from tezedge/tezedge
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add bls flag to allow disabling blst dependency
- Loading branch information
1 parent
6675c1c
commit 8114983
Showing
5 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
// SPDX-FileCopyrightText: 2022-2023 TriliTech <[email protected]> | ||
// SPDX-FileCopyrightText: 2023 Nomadic Labs <[email protected]> | ||
// | ||
// SPDX-License-Identifier: MIT | ||
|
||
//! BLS support (min_pk). | ||
#![cfg(feature = "bls")] | ||
|
||
use crate::hash::BlsSignature; | ||
use crate::hash::ContractTz4Hash; | ||
use crate::hash::PublicKeyBls; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
// Copyright (c) SimpleStaking, Viable Systems and Tezedge Contributors | ||
// SPDX-CopyrightText: 2023 TriliTech <[email protected]> | ||
// SPDX-CopyrightText: 2023 Nomadic Labs <[email protected]> | ||
// SPDX-License-Identifier: MIT | ||
#![forbid(unsafe_code)] | ||
#![cfg_attr(feature = "fuzzing", feature(no_coverage))] | ||
|
@@ -9,6 +10,7 @@ use thiserror::Error; | |
#[macro_use] | ||
pub mod blake2b; | ||
pub mod base58; | ||
#[cfg(feature = "bls")] | ||
pub mod bls; | ||
#[macro_use] | ||
pub mod hash; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters