mdsteele / rust-cfb

Rust library for reading/writing Compound File Binary (structured storage) files
MIT License
46 stars 20 forks source link

CompoundFile has become !Send and !Sync #47

Closed surban closed 7 months ago

surban commented 1 year ago

CFB version 0.7 implemented Send + Sync on CompoundFile.

Unfortunately, both traits were lost starting with version 0.8. This makes it nearly impossible to use CompoundFile in an async-context.

I proposed a fix in #46.

francisdb commented 7 months ago

Since the PR has been merged this can be closed?

surban commented 7 months ago

Yes.