1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#![no_std]

#[cfg(any(feature = "bls12_381_scalar_field", feature = "bls12_381_curve"))]
pub mod bls12_381;

#[cfg(any(
    feature = "mnt4_753_scalar_field",
    feature = "mnt4_753_base_field",
    feature = "mnt4_753_curve"
))]
pub mod mnt4_753;

#[cfg(any(
    feature = "bn384_small_two_adicity_scalar_field",
    feature = "bn384_small_two_adicity_base_field",
    feature = "bn384_small_two_adicity_curve"
))]
pub mod bn384_small_two_adicity;