@@ -175,31 +175,28 @@ license = "..."
175
175
# (similar to the readme key).
176
176
license-file = " ..."
177
177
178
- # Optional specification of badges to be displayed on crates.io. The badges
179
- # currently available are Travis CI, Appveyor, and GitLab latest build status,
180
- # specified using the following parameters:
178
+ # Optional specification of badges to be displayed on crates.io. The badges
179
+ # pertaining to build status that are currently available are Appveyor, CircleCI,
180
+ # GitLab, and TravisCI. Available badges pertaining to code test coverage are
181
+ # Codecov and Coveralls. There are also maintenance-related badges which state
182
+ # the issue resolution time, percent of open issues, and future maintenance
183
+ # intentions.
181
184
[badges ]
182
185
183
- # Travis CI: `repository` in format "<user>/<project>" is required.
184
- # `branch` is optional; default is `master`
185
- travis-ci = { repository = " ..." , branch = " master" }
186
-
187
186
# Appveyor: `repository` is required. `branch` is optional; default is `master`
188
187
# `service` is optional; valid values are `github` (default), `bitbucket`, and
189
188
# `gitlab`.
190
189
appveyor = { repository = " ..." , branch = " master" , service = " github" }
191
190
192
- # GitLab: `repository` is required. `branch` is optional; default is `master`
193
- gitlab = { repository = " ..." , branch = " master" }
194
-
195
191
# Circle CI: `repository` is required. `branch` is optiona; default is `master`
196
192
circle-ci = { repository = " ..." , branch = " master" }
197
193
198
- # Is it maintained resolution time : `repository` is required.
199
- is-it-maintained-issue-resolution = { repository = " ..." }
194
+ # GitLab : `repository` is required. `branch` is optional; default is `master`
195
+ gitlab = { repository = " ..." , branch = " master " }
200
196
201
- # Is it maintained percentage of open issues: `repository` is required.
202
- is-it-maintained-open-issues = { repository = " ..." }
197
+ # Travis CI: `repository` in format "<user>/<project>" is required.
198
+ # `branch` is optional; default is `master`
199
+ travis-ci = { repository = " ..." , branch = " master" }
203
200
204
201
# Codecov: `repository` is required. `branch` is optional; default is `master`
205
202
# `service` is optional; valid values are `github` (default), `bitbucket`, and
@@ -209,6 +206,18 @@ codecov = { repository = "...", branch = "master", service = "github" }
209
206
# Coveralls: `repository` is required. `branch` is optional; default is `master`
210
207
# `service` is optional; valid values are `github` (default) and `bitbucket`.
211
208
coveralls = { repository = " ..." , branch = " master" , service = " github" }
209
+
210
+ # Is it maintained resolution time: `repository` is required.
211
+ is-it-maintained-issue-resolution = { repository = " ..." }
212
+
213
+ # Is it maintained percentage of open issues: `repository` is required.
214
+ is-it-maintained-open-issues = { repository = " ..." }
215
+
216
+ # Maintenance: `status` is required Available options are `actively-developed`,
217
+ # `passively-maintained`, `as-is`, `none`, `experimental`, `looking-for-maintainer`
218
+ # and `deprecated`.
219
+ maintenance = { status = " none" }
220
+
212
221
```
213
222
214
223
The [ crates.io] ( https://crates.io ) registry will render the description, display
0 commit comments