pub struct ProjectPathsConfig {
    pub root: PathBuf,
    pub cache: PathBuf,
    pub artifacts: PathBuf,
    pub build_infos: PathBuf,
    pub sources: PathBuf,
    pub tests: PathBuf,
    pub scripts: PathBuf,
    pub libraries: Vec<PathBuf>,
    pub remappings: Vec<Remapping>,
}
Expand description

Where to find all files or where to write them

Fields§

§root: PathBuf

Project root

§cache: PathBuf

Path to the cache, if any

§artifacts: PathBuf

Where to store build artifacts

§build_infos: PathBuf

Where to store the build info files

§sources: PathBuf

Where to find sources

§tests: PathBuf

Where to find tests

§scripts: PathBuf

Where to find scripts

§libraries: Vec<PathBuf>

Where to look for libraries

§remappings: Vec<Remapping>

The compiler remappings

Implementations§

Creates a new hardhat style config instance which points to the canonicalized root path

Creates a new dapptools style config instance which points to the canonicalized root path

Creates a new config with the current directory as the root

Creates a new config with the current directory as the root

Returns a new [ProjectPaths] instance that contains all directories configured for this project

Same as Self::paths() but strips the root form all paths, [ProjectPaths::strip_prefix_all()]

Creates all configured dirs and files

Returns all sources found under the project’s configured sources path

Returns all sources found under the project’s configured test path

Returns all sources found under the project’s configured script path

Returns true if the there is at least one solidity file in this config.

See also, Self::input_files()

Returns an iterator that yields all solidity file paths for Self::sources, Self::tests and Self::scripts

Returns the combined set solidity file paths for Self::sources, Self::tests and Self::scripts

Returns the combined set of Self::read_sources + Self::read_tests + Self::read_scripts

Converts all \\ separators in all paths to /

Returns true if the file belongs to a library, See Self::find_library_ancestor()

Returns the library the file belongs to

Returns the first library that is an ancestor of the given file.

Note: this does not resolve remappings Self::resolve_import(), instead this merely checks if a library is a parent of file

Example
 use std::path::Path;
use ethers_solc::ProjectPathsConfig;
let config = ProjectPathsConfig::builder().lib("lib").build().unwrap();
assert_eq!(config.find_library_ancestor("lib/src/Greeter.sol").unwrap(), Path::new("lib"));

Attempts to resolve an import from the given working directory.

The cwd path is the parent dir of the file that includes the import

This will also populate the include_paths with any nested library root paths that should be provided to solc via --include-path because it uses absolute imports.

Attempts to resolve an import from the given working directory.

The cwd path is the parent dir of the file that includes the import

Attempts to find the path to the real solidity file that’s imported via the given import path by applying the configured remappings and checking the library dirs

Example

Following @aave dependency in the lib folder node_modules

<root>/node_modules/@aave
├── aave-token
│   ├── contracts
│   │   ├── open-zeppelin
│   │   ├── token
├── governance-v2
    ├── contracts
        ├── interfaces

has this remapping: @aave/=@aave/ (name:path) so contracts can be imported as

import "@aave/governance-v2/contracts/governance/Executor.sol";

So that Executor.sol can be found by checking each lib folder (node_modules) with applied remappings. Applying remapping works by checking if the import path of an import statement starts with the name of a remapping and replacing it with the remapping’s path.

There are some caveats though, dapptools style remappings usually include the src folder ds-test/=lib/ds-test/src/ so that imports look like import "ds-test/test.sol"; (note the missing src in the import path).

For hardhat/npm style that’s not always the case, most notably for openzeppelin-contracts if installed via npm. The remapping is detected as '@openzeppelin/=node_modules/@openzeppelin/contracts/', which includes the source directory contracts, however it’s common to see import paths like:

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

instead of

import "@openzeppelin/token/ERC20/IERC20.sol";

There is no strict rule behind this, but because crate::remappings::Remapping::find_many returns '@openzeppelin/=node_modules/@openzeppelin/contracts/' we should handle the case if the remapping path ends with contracts and the import path starts with <remapping name>/contracts. Otherwise we can end up with a resolved path that has a duplicate contracts segment: @openzeppelin/contracts/contracts/token/ERC20/IERC20.sol we check for this edge case here so that both styles work out of the box.

Attempts to autodetect the artifacts directory based on the given root path

Dapptools layout takes precedence over hardhat style. This will return:

  • <root>/out if it exists or <root>/artifacts does not exist,
  • <root>/artifacts if it exists and <root>/out does not exist.

Attempts to autodetect the source directory based on the given root path

Dapptools layout takes precedence over hardhat style. This will return:

  • <root>/src if it exists or <root>/contracts does not exist,
  • <root>/contracts if it exists and <root>/src does not exist.

Attempts to autodetect the lib directory based on the given root path

Dapptools layout takes precedence over hardhat style. This will return:

  • <root>/lib if it exists or <root>/node_modules does not exist,
  • <root>/node_modules if it exists and <root>/lib does not exist.

Flattens all file imports into a single string

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Formats the value using the given formatter. Read more
Converts to this type from the input type.
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. Read more
Dereferences the given pointer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more