Skip to content

Commit cedb805

Browse files
committed
Remove proc-macro2 dependency
A direct dependency on proc-macro2 was added to address a compile issue, now that the project compiles successfully without the direct dependency, it has been removed.
1 parent e61a25e commit cedb805

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/config/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ name = "config"
1717
[dependencies]
1818
thiserror = "1.0.43"
1919
girt-git = {version = "2.3.0", path = "../../src/git"}
20-
proc-macro2 = "1.0.66" # TODO: remove override of indirect dependency
2120

2221
[dev-dependencies]
2322
claims = "0.7.1"

src/config/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,6 @@ mod utils;
152152
mod testutils;
153153

154154
use git::Repository;
155-
// TODO: remove override of indirect dependency
156-
use proc_macro2 as _;
157155

158156
use self::utils::{get_bool, get_diff_ignore_whitespace, get_diff_show_whitespace, get_string, get_unsigned_integer};
159157
pub use self::{

0 commit comments

Comments
 (0)