Skip to content

Commit

Permalink
Add more metadata to Cargo.toml [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Jul 21, 2020
1 parent 0b0cab0 commit f6d3020
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
17 changes: 15 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,25 @@ authors = ["Martin Larralde <[email protected]>"]
edition = "2018"
license = "MIT"
description = "A simple macro to derive blanket implementations for your traits."
repository = "https://github.com/althonos/blanket"
homepage = "https://github.com/althonos/blanket"
readme = "README.md"
keywords = ["proc-macro", "attribute", "blanket", "trait", "impl"]
categories = ["development-tools", "rust-patterns"]

[package.metadata.docs.rs]
features = [ "_doc" ]

[badges.travis-ci]
repository = "althonos/blanket"
[badges.codecov]
repository = "althonos/blanket"
service = "github"
[badges.is-it-maintained-issue-resolution]
repository = "althonos/blanket"
[badges.maintenance]
status = "actively-developed"

[lib]
proc-macro = true

Expand All @@ -17,7 +32,6 @@ darling = "0.10"
quote = "1.0"
proc-macro2 = "1.0"
strum = "0.18"

[dependencies.syn]
version = "1.0"
features = ["full"]
Expand All @@ -28,7 +42,6 @@ trybuild = "1.0"
[features]
_doc = []


[[test]]
name = "derive_ref"
path = "tests/derive_ref/mod.rs"
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,12 @@ trait Visitor {
}
```

## ✒️ To-Do

- [ ] Add support for traits with generic arguments.
- [ ] Add support for `#[derive(Rc)]`
- [ ] Add support for `#[derive(Arc)]`

## 📋 Changelog

This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
Expand Down

0 comments on commit f6d3020

Please sign in to comment.