December 2018
Beginner to intermediate
500 pages
12h 10m
English
The Project.toml file is very special for Pkg, as it's used for managing packages and their dependencies. It is meant to include meta-information, such as the name of the package, its unique identifier (called the UUID), the version number, the author's name, and the list of dependencies. Pkg has already prepopulated it, to get us started:
authors = ["Adrian Salceanu <*@*.com>"] # actual email truncated name = "IssueReporter" uuid = "7b29c13e-f3eb-11e8-2be5-fb20b77ad364" version = "0.1.0" [deps]
As you can see, Pkg has picked up the correct author information based on my Git settings; it has filled up the package's name and generated a new UUID, and assigned the version number 0.1.0.
Read now
Unlock full access