Yamato-Security / hayabusa-evtx

A fork of the evtx Rust crate for Hayabusa
Apache License 2.0
6 stars 2 forks source link

bump #54

Closed YamatoSecurity closed 5 months ago

YamatoSecurity commented 5 months ago

I updated crates for the new release.

YamatoSecurity commented 5 months ago

@hitenkoku @fukusuket Humm.. I can compile fine locally. Do one of you know how to fix this?

fukusuket commented 5 months ago

@YamatoSecurity The cause seems to be that assert_display_snapshot has been deprecated since insta version 1.36.0.

The clippy error can be resolved by fixing it to insta version 1.35.1, which is before the fix mentioned above.(If you set =1.36.0 or above, clippy error will be reproduced)

[dev-dependencies]
insta = { version = "=1.35.1", features = ["json"] }
YamatoSecurity commented 5 months ago

@fukusuket Thanks so much! That fixed it. It passed all tests so I will merge it.