Skip to content

Commit b06f25d

Browse files
committed
Remove extraneous dependencies, patch version numbers
1 parent 422a6ba commit b06f25d

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = "MIT/Apache-2.0"
1010

1111
[dependencies]
1212
ifmt-impl = { version = "0.3", path = "impl" }
13-
proc-macro-hack = "0.5.10"
13+
proc-macro-hack = "0.5"
1414

1515
[workspace]
1616
members = ["demo", "impl"]

demo/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ publish = false
77

88
[dependencies]
99
ifmt = { version = "0.3.0", path = "../" }
10-
lazy_static = "1.4.0"

impl/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,5 @@ proc-macro = true
1414
syn = { version = "1.0", features = ["full", "extra-traits"]}
1515
regex = "1.1"
1616
lazy_static = "1.4"
17-
proc-macro2 = "1.0.7"
1817
quote = "1.0"
1918
proc-macro-hack = "0.5"

impl/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
extern crate proc_macro;
2-
extern crate proc_macro2;
32
extern crate regex;
43
#[macro_use]
54
extern crate lazy_static;

0 commit comments

Comments
 (0)