fix(abigen): add serde json to created crate

This commit is contained in:
Georgios Konstantopoulos 2022-02-18 00:17:22 +02:00
parent 19d2fd1155
commit 16b9de5134
1 changed files with 4 additions and 1 deletions

View File

@ -158,7 +158,10 @@ impl MultiBindings {
writeln!(toml, "[dependencies]")?;
writeln!(
toml,
r#"ethers = {{ git = "https://github.com/gakonst/ethers-rs", default-features = false }}"#
r#"
ethers = {{ git = "https://github.com/gakonst/ethers-rs", default-features = false }}
serde_json = "1.0.79"
"#
)?;
Ok(toml)
}