thscharler / spreadsheet-ods

Apache License 2.0
29 stars 6 forks source link

Request: Allow for writing to a vec<u64> instead of a file #23

Closed twiclo closed 3 years ago

twiclo commented 3 years ago

I just want to send the generated ODS straight to actix to be served up to my front end user. Having to use the filesystem is unnecessary in this use case. Any possibilities this could be added?

thscharler commented 3 years ago

Should not be too complicated.

But the standard seems to be a Vec<u8> for such things?

thscharler commented 3 years ago

I added a version of this to 0.8.

twiclo commented 3 years ago

Wow thanks for the quick response. I'll test it out later today and let you know how it goes