toml_edit assumes the key needs to be taken literally here, and escapes the period (.) by inserting quotes (") around the entire key, while dependencies is instead a subtable of workspace.
It is curious that get_mut() on such a key seems to work, though.
toml_edit
assumes the key needs to be taken literally here, and escapes the period (.
) by inserting quotes ("
) around the entire key, whiledependencies
is instead a subtable ofworkspace
.It is curious that
get_mut()
on such a key seems to work, though.