1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
// Copyright (C) 2019-2023 Aleo Systems Inc.
// This file is part of the snarkVM library.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#![forbid(unsafe_code)]
#![allow(clippy::type_complexity)]
extern crate snarkvm_circuit_environment_witness;
pub use snarkvm_circuit_environment_witness::rename_selfs;
pub mod circuit;
pub use circuit::*;
pub mod environment;
pub use environment::*;
pub mod helpers;
pub use helpers::*;
pub mod macros;
#[allow(unused_imports)]
pub use macros::*;
pub mod traits;
pub use traits::*;
pub mod prelude {
pub use crate::{
count,
count_is,
count_less_than,
output_mode,
rename_selfs,
traits::*,
witness,
witness_mode,
CircuitType,
Count,
Environment,
LinearCombination,
Mode,
OutputMode,
Variable,
};
pub use console::{
prelude::{
bail,
ensure,
fmt,
has_duplicates,
Debug,
Display,
Error,
Formatter,
FromStr,
One as _,
Result,
Zero as _,
},
traits::{
string_parser,
types::{
integer_magnitude::Magnitude,
integer_type::{CheckedPow, IntegerProperties, IntegerType, WrappingDiv, WrappingPow, WrappingRem},
},
Double as _,
FromBits as _,
Inverse as _,
Square as _,
SquareRoot as _,
ToBits as _,
},
Parser,
ParserResult,
TypeName,
};
pub use snarkvm_fields::{self, Field as _, PrimeField, Zero as _};
#[cfg(debug_assertions)]
pub use snarkvm_curves::AffineCurve as _;
pub use core::ops::{
Add,
AddAssign,
BitAnd,
BitAndAssign,
BitOr,
BitOrAssign,
BitXor,
BitXorAssign,
Deref,
Div,
DivAssign,
Mul,
MulAssign,
Neg,
Not,
Rem,
RemAssign,
Shl,
ShlAssign,
Shr,
ShrAssign,
Sub,
SubAssign,
};
pub use indexmap::IndexMap;
pub use itertools::Itertools;
pub use nom::{
branch::alt,
bytes::complete::tag,
character::complete::{alpha1, alphanumeric1, char, one_of},
combinator::{map, map_res, opt, recognize},
multi::{many0, many1},
sequence::{pair, terminated},
};
pub use num_traits::{self, Inv, One as NumOne, Pow, Unsigned};
pub use once_cell::unsync::OnceCell;
}