Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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.
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