Skip to content

Commit 5fc9d08

Browse files
committed
fix: fix serialization of REPL settings
In commit cfe7af3, the new `ProjectConfig` does not serialize the REPL settings with the correct names to be deserialized later. This struct gets serialized by `execute_changes`.
1 parent da5f1bc commit 5fc9d08

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/types/project_manifest.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ pub struct ProjectManifest {
3333
pub project: ProjectConfig,
3434
#[serde(serialize_with = "toml::ser::tables_last")]
3535
pub contracts: BTreeMap<String, ContractConfig>,
36+
#[serde(rename = "repl")]
3637
pub repl_settings: repl::Settings,
3738
}
3839

0 commit comments

Comments
 (0)