mdsteele / rust-cfb

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

Make CompoundFile implement Send + Sync #46

Closed surban closed 12 months ago

surban commented 1 year ago

This was done by refactoring code to use Arc<RwLock> instead of Rc<RefCell>.

mdsteele commented 12 months ago

Thanks!