Sebastian Messmer

Results 221 comments of Sebastian Messmer

It works if I remove the `--release` from https://github.com/rustyscreeps/cargo-screeps/blob/master/src/build.rs#L41, but I imagine that I'm getting a debug build then and I'd prefer a release build. Also, I'm not actually getting...

@daboross are there any plans to fix this and https://github.com/rustyscreeps/cargo-screeps/issues/30 to make it work for newer rust versions, or is this project dead?

I'm currently seeing even worse behavior. Even though I'm setting `cursorToEnd=false`, it does still move the cursor to the end. I haven't noticed any difference in setting the parameter to...

CryFS is already upgraded to DokanY 2.0 in the develop branch. The next major release (0.12.0 or 1.0.0) will have it.

Hm that changelog was maybe overly optimistic. What it did is make `mount -t fuse.cryfs basedir mountdir` work and, technically, that's also required for making `/etc/fstab` work. But, as you...

I tried to upgrade CryFS to libfuse3 but both MacFuse and Dokany don't support fuse3 yet. That means a fuse3 CryFS would not run on MacOS or Windows. - MacFuse...

This feature sounds great. Any progress on this?

Why CBOR and not bincode for the inner format? Bincode is a bit more compact. What we're doing currently in our manual serialization logic is: Serialize the whole credential into...

> > Why CBOR and not bincode for the inner format? Bincode is a bit more compact. What we're doing currently in our manual serialization logic is: > > We...

That approach with versioning within the library while allowing developers to choose the serialization format sounds great. Thanks. > We will say @smessmer that reading about bitcode, it's format isn't...