In a Project.toml files, the structure is a series of rows containing Module name and UUID. For example:
[deps]
ArgMacros = "dbc42088-9de8-42a0-8ec8-2cd114e1ea3e"
BSON = "fbb218c0-5317-5bc6-957e-2ee96dd4b1f0"
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
This Project.toml
file was created under Julia1.8. I now regenerate the Manifest.toml (after removing the previous one) under Julia1.9rc2.
What exactly does the UUID refer to? A specific source version? How does one upgrade to the latest package version? Use the update
command under the Pkg manager? Thanks!