When building the project, Cargo raises a warning about .cargo/config being deprecated in favor of config.toml. The second commit resolved this issue, but drops compatibility with Cargo 1.38 or ealier. This should be fine as it is almost a 5 years old Cargo version (09-2019).
According to the Cargo book, profiles should be defined in
Cargo.toml
(https://doc.rust-lang.org/cargo/reference/profiles.html). The first commit moves the profiles toCargo.toml
.When building the project, Cargo raises a warning about
.cargo/config
being deprecated in favor ofconfig.toml
. The second commit resolved this issue, but drops compatibility with Cargo 1.38 or ealier. This should be fine as it is almost a 5 years old Cargo version (09-2019).