5c6ce6b0a1
* feat: improved solc management * test: add basic test * rustfmt * rustfmt * feat: add support for lib paths * test: add dapp testing data * feat: support dapp style libs * fix: doc test * use SOLC_path by default * docs: import readme * feat: add diagnostics * chore: cleanup * docs: update compile docs * style: use red for error msg * style: simplifiy error format * chore: add newline on successful compiler run log * feat: allow ignoring error codes so that they do not get logged * chore: use solc 0.6.6 to match CI Version * fix: make constructor public in hardhat tests Co-authored-by: Georgios Konstantopoulos <me@gakonst.com> |
||
---|---|---|
.. | ||
src | ||
test-data | ||
tests | ||
Cargo.toml | ||
README.md |
README.md
ethers-solc
Utilities for working with native solc
and compiling projects.
To also compile contracts during cargo build
(so that ethers abigen!
can pull in updated abi automatically) you can configure a ethers_solc::Project
in your build.rs
file
First add ethers-solc
to your cargo build-dependencies
[build-dependencies]
ethers-solc = { git = "https://github.com/gakonst/ethers-rs" }
use ethers_solc::{Project, ProjectPathsConfig};
fn main() {
// configure the project with all its paths, solc, cache etc.
let project = Project::builder()
.paths(ProjectPathsConfig::hardhat(env!("CARGO_MANIFEST_DIR")).unwrap())
.build()
.unwrap();
let output = project.compile().unwrap();
println!("{}", output);
}