mirror of
https://github.com/ProvableHQ/leo.git
synced 2025-01-03 15:52:15 +03:00
Update outputs directory
This commit is contained in:
parent
cfb627d468
commit
b58ee7233a
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,4 @@
|
||||
**/target
|
||||
/tmp/
|
||||
**.idea/
|
||||
outputs/
|
||||
*.DS_Store
|
||||
|
BIN
examples/fibonacci/outputs/fibonacci.lpk
Normal file
BIN
examples/fibonacci/outputs/fibonacci.lpk
Normal file
Binary file not shown.
BIN
examples/fibonacci/outputs/fibonacci.lvk
Normal file
BIN
examples/fibonacci/outputs/fibonacci.lvk
Normal file
Binary file not shown.
BIN
examples/fibonacci/outputs/fibonacci.proof
Normal file
BIN
examples/fibonacci/outputs/fibonacci.proof
Normal file
Binary file not shown.
1
examples/fibonacci/outputs/fibonacci.sum
Normal file
1
examples/fibonacci/outputs/fibonacci.sum
Normal file
@ -0,0 +1 @@
|
||||
4515828aedc8e4ff8fe7555eabcb3da1fd155e7d35743d1322e763dfb477df83
|
1
examples/hello_world/outputs/hello_world.leo.checksum
Normal file
1
examples/hello_world/outputs/hello_world.leo.checksum
Normal file
@ -0,0 +1 @@
|
||||
a8083686e43fd326bd715555ef323dcec82c859403428cb4bd33368d5893eaac
|
BIN
examples/hello_world/outputs/hello_world.leo.pk
Normal file
BIN
examples/hello_world/outputs/hello_world.leo.pk
Normal file
Binary file not shown.
BIN
examples/hello_world/outputs/hello_world.leo.proof
Normal file
BIN
examples/hello_world/outputs/hello_world.leo.proof
Normal file
Binary file not shown.
BIN
examples/hello_world/outputs/hello_world.leo.vk
Normal file
BIN
examples/hello_world/outputs/hello_world.leo.vk
Normal file
Binary file not shown.
BIN
examples/hello_world/outputs/hello_world.lpk
Normal file
BIN
examples/hello_world/outputs/hello_world.lpk
Normal file
Binary file not shown.
BIN
examples/hello_world/outputs/hello_world.lvk
Normal file
BIN
examples/hello_world/outputs/hello_world.lvk
Normal file
Binary file not shown.
BIN
examples/hello_world/outputs/hello_world.proof
Normal file
BIN
examples/hello_world/outputs/hello_world.proof
Normal file
Binary file not shown.
1
examples/hello_world/outputs/hello_world.sum
Normal file
1
examples/hello_world/outputs/hello_world.sum
Normal file
@ -0,0 +1 @@
|
||||
d11c379b6a0ea2e0da8c9980db0c8705d18b047799b4372e8786dc44a6ee1495
|
BIN
examples/pedersen_hash/outputs/pedersen_hash.lpk
Normal file
BIN
examples/pedersen_hash/outputs/pedersen_hash.lpk
Normal file
Binary file not shown.
BIN
examples/pedersen_hash/outputs/pedersen_hash.lvk
Normal file
BIN
examples/pedersen_hash/outputs/pedersen_hash.lvk
Normal file
Binary file not shown.
BIN
examples/pedersen_hash/outputs/pedersen_hash.proof
Normal file
BIN
examples/pedersen_hash/outputs/pedersen_hash.proof
Normal file
Binary file not shown.
1
examples/pedersen_hash/outputs/pedersen_hash.sum
Normal file
1
examples/pedersen_hash/outputs/pedersen_hash.sum
Normal file
@ -0,0 +1 @@
|
||||
ccedb51d6030e8775a49346b694e53da5d3fdb57b884320231eb3c9ecf7c4df6
|
@ -1,9 +1,10 @@
|
||||
use crate::{cli::*, cli_types::*, errors::CLIError};
|
||||
use leo_compiler::{compiler::Compiler, group::targets::edwards_bls12::EdwardsGroupType};
|
||||
use leo_package::{
|
||||
directories::{source::SOURCE_DIRECTORY_NAME, OutputDirectory, OUTPUT_DIRECTORY_NAME},
|
||||
files::{ChecksumFile, LibFile, MainFile, Manifest, LIB_FILE_NAME, MAIN_FILE_NAME},
|
||||
directories::source::SOURCE_DIRECTORY_NAME,
|
||||
files::{LibFile, MainFile, Manifest, LIB_FILE_NAME, MAIN_FILE_NAME},
|
||||
inputs::*,
|
||||
outputs::{ChecksumFile, OutputDirectory, OUTPUT_DIRECTORY_NAME},
|
||||
};
|
||||
|
||||
use snarkos_algorithms::snark::groth16::KeypairAssembly;
|
||||
|
@ -1,5 +1,8 @@
|
||||
use crate::{cli::*, cli_types::*, errors::CLIError};
|
||||
use leo_package::files::{ChecksumFile, Manifest, ProofFile, ProvingKeyFile, VerificationKeyFile};
|
||||
use leo_package::{
|
||||
files::Manifest,
|
||||
outputs::{ChecksumFile, ProofFile, ProvingKeyFile, VerificationKeyFile},
|
||||
};
|
||||
|
||||
use clap::ArgMatches;
|
||||
use std::{convert::TryFrom, env::current_dir};
|
||||
|
@ -1,5 +1,5 @@
|
||||
use crate::{cli::*, cli_types::*, commands::SetupCommand, errors::CLIError};
|
||||
use leo_package::files::{Manifest, ProofFile};
|
||||
use leo_package::{files::Manifest, outputs::ProofFile};
|
||||
|
||||
use snarkos_algorithms::snark::groth16::{Groth16, PreparedVerifyingKey, Proof};
|
||||
use snarkos_curves::bls12_377::{Bls12_377, Fr};
|
||||
|
@ -1,7 +1,7 @@
|
||||
use crate::{cli::*, cli_types::*, commands::BuildCommand, errors::CLIError};
|
||||
use leo_package::{
|
||||
directories::output::OutputDirectory,
|
||||
files::{Manifest, ZipFile},
|
||||
outputs::OutputDirectory,
|
||||
};
|
||||
|
||||
use clap::ArgMatches;
|
||||
|
@ -7,7 +7,8 @@ use crate::{
|
||||
use leo_compiler::{compiler::Compiler, group::targets::edwards_bls12::EdwardsGroupType};
|
||||
use leo_package::{
|
||||
directories::SOURCE_DIRECTORY_NAME,
|
||||
files::{Manifest, ProvingKeyFile, VerificationKeyFile, MAIN_FILE_NAME},
|
||||
files::{Manifest, MAIN_FILE_NAME},
|
||||
outputs::{ProvingKeyFile, VerificationKeyFile},
|
||||
};
|
||||
|
||||
use snarkos_algorithms::snark::groth16::{Groth16, Parameters, PreparedVerifyingKey, VerifyingKey};
|
||||
|
@ -5,9 +5,10 @@ use crate::{
|
||||
};
|
||||
use leo_compiler::{compiler::Compiler, group::targets::edwards_bls12::EdwardsGroupType};
|
||||
use leo_package::{
|
||||
directories::{output::OUTPUT_DIRECTORY_NAME, source::SOURCE_DIRECTORY_NAME},
|
||||
directories::source::SOURCE_DIRECTORY_NAME,
|
||||
files::{MainFile, Manifest, MAIN_FILE_NAME},
|
||||
inputs::*,
|
||||
outputs::OUTPUT_DIRECTORY_NAME,
|
||||
};
|
||||
|
||||
use snarkos_curves::edwards_bls12::Fq;
|
||||
|
@ -1,8 +1,5 @@
|
||||
pub mod imports;
|
||||
pub use self::imports::*;
|
||||
|
||||
pub mod output;
|
||||
pub use self::output::*;
|
||||
|
||||
pub mod source;
|
||||
pub use self::source::*;
|
||||
|
@ -1,8 +1,5 @@
|
||||
pub mod imports;
|
||||
pub use self::imports::*;
|
||||
|
||||
pub mod output;
|
||||
pub use self::output::*;
|
||||
|
||||
pub mod source;
|
||||
pub use self::source::*;
|
||||
|
@ -1,9 +1,6 @@
|
||||
pub mod zip;
|
||||
pub use self::zip::*;
|
||||
|
||||
pub mod checksum;
|
||||
pub use self::checksum::*;
|
||||
|
||||
pub mod gitignore;
|
||||
pub use self::gitignore::*;
|
||||
|
||||
@ -15,12 +12,3 @@ pub use self::main::*;
|
||||
|
||||
pub mod manifest;
|
||||
pub use self::manifest::*;
|
||||
|
||||
pub mod proof;
|
||||
pub use self::proof::*;
|
||||
|
||||
pub mod proving_key;
|
||||
pub use self::proving_key::*;
|
||||
|
||||
pub mod verification_key;
|
||||
pub use self::verification_key::*;
|
||||
|
@ -6,3 +6,6 @@ pub use self::files::*;
|
||||
|
||||
pub mod inputs;
|
||||
pub use inputs::*;
|
||||
|
||||
pub mod outputs;
|
||||
pub use outputs::*;
|
||||
|
14
package/src/errors/outputs/mod.rs
Normal file
14
package/src/errors/outputs/mod.rs
Normal file
@ -0,0 +1,14 @@
|
||||
pub mod checksum;
|
||||
pub use checksum::*;
|
||||
|
||||
pub mod directory;
|
||||
pub use self::directory::*;
|
||||
|
||||
pub mod proof;
|
||||
pub use proof::*;
|
||||
|
||||
pub mod proving_key;
|
||||
pub use proving_key::*;
|
||||
|
||||
pub mod verification_key;
|
||||
pub use verification_key::*;
|
@ -1,9 +1,3 @@
|
||||
pub mod zip;
|
||||
pub use self::zip::*;
|
||||
|
||||
pub mod checksum;
|
||||
pub use self::checksum::*;
|
||||
|
||||
pub mod gitignore;
|
||||
pub use self::gitignore::*;
|
||||
|
||||
@ -16,11 +10,5 @@ pub use self::main::*;
|
||||
pub mod manifest;
|
||||
pub use self::manifest::*;
|
||||
|
||||
pub mod proof;
|
||||
pub use self::proof::*;
|
||||
|
||||
pub mod proving_key;
|
||||
pub use self::proving_key::*;
|
||||
|
||||
pub mod verification_key;
|
||||
pub use self::verification_key::*;
|
||||
pub mod zip;
|
||||
pub use self::zip::*;
|
||||
|
@ -1,15 +1,16 @@
|
||||
//! The program package zip file.
|
||||
|
||||
use crate::{
|
||||
directories::{IMPORTS_DIRECTORY_NAME, OUTPUT_DIRECTORY_NAME},
|
||||
directories::IMPORTS_DIRECTORY_NAME,
|
||||
errors::ZipFileError,
|
||||
files::{
|
||||
inputs::{INPUT_DIRECTORY_NAME, INPUT_FILE_EXTENSION},
|
||||
outputs::{
|
||||
CHECKSUM_FILE_EXTENSION,
|
||||
OUTPUT_DIRECTORY_NAME,
|
||||
PROOF_FILE_EXTENSION,
|
||||
PROVING_KEY_FILE_EXTENSION,
|
||||
VERIFICATION_KEY_FILE_EXTENSION,
|
||||
},
|
||||
inputs::{INPUT_DIRECTORY_NAME, INPUT_FILE_EXTENSION},
|
||||
};
|
||||
|
||||
use serde::Deserialize;
|
||||
|
@ -7,3 +7,4 @@ pub use errors::*;
|
||||
pub mod directories;
|
||||
pub mod files;
|
||||
pub mod inputs;
|
||||
pub mod outputs;
|
||||
|
@ -1,6 +1,6 @@
|
||||
//! The build checksum file.
|
||||
|
||||
use crate::{directories::output::OUTPUT_DIRECTORY_NAME, errors::ChecksumFileError};
|
||||
use crate::{errors::ChecksumFileError, outputs::OUTPUT_DIRECTORY_NAME};
|
||||
|
||||
use serde::Deserialize;
|
||||
use std::{
|
17
package/src/outputs/mod.rs
Normal file
17
package/src/outputs/mod.rs
Normal file
@ -0,0 +1,17 @@
|
||||
pub mod checksum;
|
||||
pub use self::checksum::*;
|
||||
|
||||
pub mod directory;
|
||||
pub use directory::*;
|
||||
|
||||
// pub mod output;
|
||||
// pub use output::*;
|
||||
|
||||
pub mod proof;
|
||||
pub use self::proof::*;
|
||||
|
||||
pub mod proving_key;
|
||||
pub use self::proving_key::*;
|
||||
|
||||
pub mod verification_key;
|
||||
pub use self::verification_key::*;
|
@ -1,6 +1,6 @@
|
||||
//! The proof file.
|
||||
|
||||
use crate::{directories::output::OUTPUT_DIRECTORY_NAME, errors::ProofFileError};
|
||||
use crate::{errors::ProofFileError, outputs::OUTPUT_DIRECTORY_NAME};
|
||||
|
||||
use serde::Deserialize;
|
||||
use std::{
|
@ -1,6 +1,6 @@
|
||||
//! The proving key file.
|
||||
|
||||
use crate::{directories::output::OUTPUT_DIRECTORY_NAME, errors::ProvingKeyFileError};
|
||||
use crate::{errors::ProvingKeyFileError, outputs::OUTPUT_DIRECTORY_NAME};
|
||||
|
||||
use serde::Deserialize;
|
||||
use std::{
|
@ -1,6 +1,6 @@
|
||||
//! The verification key file.
|
||||
|
||||
use crate::{directories::output::OUTPUT_DIRECTORY_NAME, errors::VerificationKeyFileError};
|
||||
use crate::{errors::VerificationKeyFileError, outputs::OUTPUT_DIRECTORY_NAME};
|
||||
|
||||
use serde::Deserialize;
|
||||
use std::{
|
Loading…
Reference in New Issue
Block a user