rename llvm-context crate

Signed-off-by: xermicus <cyrill@parity.io>
This commit is contained in:
xermicus
2024-05-01 15:45:09 +02:00
parent 9b341853b4
commit 72515254fe
55 changed files with 529 additions and 529 deletions
+2 -2
View File
@@ -23,7 +23,7 @@ pub struct Contract {
/// The auxiliary identifier. Used to identify Yul objects.
pub identifier: String,
/// The LLVM module build.
pub build: era_compiler_llvm_context::EraVMBuild,
pub build: revive_llvm_context::EraVMBuild,
/// The metadata JSON.
pub metadata_json: serde_json::Value,
/// The factory dependencies.
@@ -37,7 +37,7 @@ impl Contract {
pub fn new(
path: String,
identifier: String,
build: era_compiler_llvm_context::EraVMBuild,
build: revive_llvm_context::EraVMBuild,
metadata_json: serde_json::Value,
factory_dependencies: HashSet<String>,
) -> Self {