Skip to content

Commit 033c272

Browse files
committed
add cargo meta
1 parent 785e28f commit 033c272

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

Cargo.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
name = "auto_impl"
33
version = "0.1.0"
44
authors = ["Ashley Mannix <[email protected]>"]
5+
license = "MIT"
6+
description = "Automatically implement traits for common smart pointers and closures"
7+
repository = "https://github.com/KodrAus/auto_impl"
8+
documentation = "https://docs.rs/auto_impl/"
9+
keywords = ["plugin"]
10+
categories = ["development-tools"]
11+
readme = "README.md"
12+
13+
[badges]
14+
travis-ci = { repository = "KodrAus/auto_impl" }
515

616
[lib]
717
proc-macro = true

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ mod tests {
158158

159159
let impls = parse_impl_types(input).unwrap_err();
160160

161-
assert_eq!("expected a list containing any of `Arc`, `Box`, `Fn`, `FnMut` or `FnOnce`", &impls);
161+
assert_eq!("expected a list containing any of `Arc`, `Rc`, `Box`, `Fn`, `FnMut` or `FnOnce`", &impls);
162162
}
163163

164164
#[test]

0 commit comments

Comments
 (0)