graph icon indicating copy to clipboard operation
graph copied to clipboard

Upgrade dependencies

Open brainplot opened this issue 5 months ago • 2 comments

Hi team!

I'm trying to use this crate to build a crate of my own and I always strive to keep the number of duplicated dependencies in my dependency tree as low as possible. (With cargo tree -d this is easy to see).

It turns out this crate is using old versions of a few dependencies. In my case specifically, the offending crates you depend on that I also depend on are atomic and syn (you're not this last one directly but delegate is using it, which is your dependency). The output of cargo tree -d should make this clearer.

atomic v0.5.3
└── graph_builder v0.4.1

syn v1.0.109
└── delegate v0.8.0 (proc-macro)
    └── graph_builder v0.4.1 (*)

Latest versions are atomic v0.6.1 and syn v2.0.104, which I'm using through other crates.

Probably some other dependencies may need to be updated that don't apply to me and also I have no idea of the impact of upgrading these. I just wanted to report this.

brainplot avatar Jul 12 '25 10:07 brainplot

Thanks for reporting this. I will address it and release soon.

s1ck avatar Aug 22 '25 11:08 s1ck

Thank you so much @s1ck! Make sure to close this so I get notified :)

brainplot avatar Aug 23 '25 12:08 brainplot