Skip to content

Commit

Permalink
Updated mirror.
Browse files Browse the repository at this point in the history
  • Loading branch information
shahar4 committed May 31, 2023
1 parent 44b265b commit 8adcfe8
Show file tree
Hide file tree
Showing 519 changed files with 39,420 additions and 15,017 deletions.
693 changes: 523 additions & 170 deletions Cargo.lock

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,17 @@ members = [
# "core/bin/prover",
# Server
"core/bin/zksync_core",
"core/bin/external_node",
"core/bin/admin-tools",
"core/bin/system-constants-generator",
"core/tests/cross_external_nodes_checker",
# Contract verifier
"core/bin/contract-verifier",
# Setup key generator and server: its commented as it cannot be built with stable rust.
# "core/bin/setup_key_generator_and_server",
# Verification key generator and server
"core/bin/verification_key_generator_and_server",
"core/bin/witness_generator",
# circuit synthesizer: its commented as it cannot be built with stable rust.
# "core/bin/circuit_synthesizer",
# Libraries
Expand All @@ -28,6 +31,7 @@ members = [
"core/lib/eth_signer",
"core/lib/mempool",
"core/lib/merkle_tree",
"core/lib/merkle_tree2",
"core/lib/object_store",
"core/lib/mini_merkle_tree",
"core/lib/prometheus_exporter",
Expand All @@ -40,10 +44,13 @@ members = [
"core/lib/vlog",
"core/lib/vm",
"core/lib/web3_decl",
"core/lib/db_storage_provider",

# Test infrastructure
"core/tests/loadnext",
"core/tests/testkit",
"core/tests/vm-benchmark",
"core/tests/vm-benchmark/harness",

# SDK section
"sdk/zksync-rs",
Expand All @@ -55,3 +62,7 @@ exclude = [ "core/bin/prover", "core/bin/circuit_synthesizer", "core/bin/setup_k
[profile.test.package.zksync_merkle_tree]
opt-level = 3

# for `perf` profiling
[profile.perf]
inherits = "release"
debug = true
6 changes: 2 additions & 4 deletions bors.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@ timeout-sec = 14400

# If expected statuses are not specified explicitly, bors tries to "guess" and apperently does it wrong sometimes
status = [
"codecov/patch",
"codecov/project",
"generate",
"integration",
"loadtest",
"lint",
"testkit",
"Build images / Build and Push Docker Images"
"unit-tests",
"Build images / Build and Push Docker Images",
]

use_squash_merge = true
376 changes: 376 additions & 0 deletions core/CHANGELOG.md

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions core/bin/admin-tools/src/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ pub fn create_app<'a>(profile: &Option<String>) -> Result<App<'a>, AppError> {

let tokio = tokio::runtime::Runtime::new().map_err(|x| AppError::Init(InitError::IO(x)))?;

let db =
tokio.block_on(async { zksync_dal::StorageProcessor::establish_connection(true).await });
let db = zksync_dal::StorageProcessor::establish_connection_blocking(true);

let invocation = std::process::Command::new("stty")
.arg("-f")
Expand Down
Loading

0 comments on commit 8adcfe8

Please sign in to comment.