File tree 4 files changed +17
-3
lines changed
4 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " enum-utils"
3
- version = " 0.1.1 "
3
+ version = " 0.1.2 " # remember to update html_root_url
4
4
authors = [
" Dylan MacKenzie <[email protected] >" ]
5
5
edition = " 2018"
6
6
@@ -26,11 +26,14 @@ proc-macro = true
26
26
[dependencies ]
27
27
proc-macro2 = " 1.0"
28
28
quote = " 1.0"
29
- enum-utils-from-str = { path = " from-str" , version = " 0.1.0 " }
29
+ enum-utils-from-str = { path = " from-str" , version = " 0.1.2 " }
30
30
serde_derive_internals = " 0.25"
31
31
syn = { version = " 1.0" , features = [" extra-traits" ] }
32
32
33
33
[dependencies .failure ]
34
34
version = " 0.1"
35
35
default-features = false
36
36
features = [" std" ]
37
+
38
+ [dev-dependencies ]
39
+ version-sync = " 0.8"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " enum-utils-from-str"
3
- version = " 0.1.0 "
3
+ version = " 0.1.2 "
4
4
authors = [
" Dylan MacKenzie <[email protected] >" ]
5
5
edition = " 2018"
6
6
Original file line number Diff line number Diff line change 1
1
//! A set of procedural macros for deriving useful functionality on enums.
2
2
3
+ #![ doc( html_root_url = "https://docs.rs/enum-utils/0.1.2" ) ]
4
+
3
5
extern crate proc_macro;
4
6
5
7
#[ macro_use]
Original file line number Diff line number Diff line change
1
+ #[ test]
2
+ fn test_readme_deps ( ) {
3
+ version_sync:: assert_markdown_deps_updated!( "README.md" ) ;
4
+ }
5
+
6
+ #[ test]
7
+ fn test_html_root_url ( ) {
8
+ version_sync:: assert_html_root_url_updated!( "src/lib.rs" ) ;
9
+ }
You can’t perform that action at this time.
0 commit comments