Skip to content

Commit

Permalink
chore: rename foundry-compilers-project into foundry-compilers (#152)
Browse files Browse the repository at this point in the history
Closes #150
  • Loading branch information
klkvr authored Jun 17, 2024
1 parent 477a85e commit e844ac1
Show file tree
Hide file tree
Showing 37 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace]
members = ["crates/artifacts/*", "crates/core", "crates/project"]
members = ["crates/artifacts/*", "crates/core", "crates/compilers"]
resolver = "2"

[workspace.package]
Expand Down
2 changes: 1 addition & 1 deletion crates/project/Cargo.toml → crates/compilers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "foundry-compilers-project"
name = "foundry-compilers"
description = "Compiler abstraction and Foundry project implementation"

version.workspace = true
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
//! mocked project tests

use foundry_compilers_core::error::Result;
use foundry_compilers_project::{
use foundry_compilers::{
compilers::multi::MultiCompiler,
project_util::{
mock::{MockProjectGenerator, MockProjectSettings, MockProjectSkeleton},
TempProject,
},
};
use foundry_compilers_core::error::Result;

// default version to use
const DEFAULT_VERSION: &str = "^0.8.10";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,7 @@
//! project tests

use alloy_primitives::{Address, Bytes};
use foundry_compilers_artifacts::{
output_selection::OutputSelection, remappings::Remapping, BytecodeHash, DevDoc, Error,
ErrorDoc, EventDoc, Libraries, MethodDoc, ModelCheckerEngine::CHC, ModelCheckerSettings,
Settings, Severity, SolcInput, UserDoc, UserDocNotice,
};
use foundry_compilers_core::{
error::SolcError,
utils::{self, canonicalize, RuntimeOrHandle},
};
use foundry_compilers_project::{
use foundry_compilers::{
buildinfo::BuildInfo,
cache::{CompilerCache, SOLIDITY_FILES_CACHE_FILENAME},
compilers::{
Expand All @@ -27,6 +18,15 @@ use foundry_compilers_project::{
take_solc_installer_lock, Artifact, ConfigurableArtifacts, ExtraOutputValues, Graph, Project,
ProjectBuilder, ProjectCompileOutput, ProjectPathsConfig, TestFileFilter,
};
use foundry_compilers_artifacts::{
output_selection::OutputSelection, remappings::Remapping, BytecodeHash, DevDoc, Error,
ErrorDoc, EventDoc, Libraries, MethodDoc, ModelCheckerEngine::CHC, ModelCheckerSettings,
Settings, Severity, SolcInput, UserDoc, UserDocNotice,
};
use foundry_compilers_core::{
error::SolcError,
utils::{self, canonicalize, RuntimeOrHandle},
};
use once_cell::sync::Lazy;
use semver::Version;
use similar_asserts::assert_eq;
Expand Down

0 comments on commit e844ac1

Please sign in to comment.