We are not taking advantage of the new Cargo.toml keywords, we should add them. This is the list of keywords we should add in the [badges] section:
codecov = { repository = "...", branch = "master", service = "github" }: Adds Codecov coverage report for the project.
is-it-maintained-issue-resolution = { repository = "..." }: Adds information about issue resolution time.
is-it-maintained-open-issues = { repository = "..." }: Adds information about open issues.
maintenance = { status = "..." }: Adds information about the current maintenance status. Options are actively-developed, passively-maintained, as-is, none, experimental, looking-for-maintainer and deprecated. I would propose experimental, but suggestions are welcome. Maybe one day we can move it to actively-developed ;)
For more information, check the Package metadata section in the Cargo documentation.
We are not taking advantage of the new
Cargo.toml
keywords, we should add them. This is the list of keywords we should add in the[badges]
section:codecov = { repository = "...", branch = "master", service = "github" }
: Adds Codecov coverage report for the project.is-it-maintained-issue-resolution = { repository = "..." }
: Adds information about issue resolution time.is-it-maintained-open-issues = { repository = "..." }
: Adds information about open issues.maintenance = { status = "..." }
: Adds information about the current maintenance status. Options areactively-developed
,passively-maintained
,as-is
,none
,experimental
,looking-for-maintainer
anddeprecated
. I would proposeexperimental
, but suggestions are welcome. Maybe one day we can move it toactively-developed
;)For more information, check the Package metadata section in the Cargo documentation.