Brian Olsen
Brian Olsen
I have just put my new grain through its paces and I can't reproduce my own problem so I am just closing this issue. I first uploaded all pictures stored...
Sorry for the inconvenience!
I have found the underlying problem that was causing my issue. It is this: https://github.com/sandstorm-io/sandstorm/issues/3512
@ocdtrekkie I got `inotify_add_watch` in the log and increasing `fs.inotify.max_user_watches` fixed my issue. So it looks to be different issues.
MacOS runners for Github Actions has VirtualBox installed. Take a look at [griff/nixos-vagrant](https://github.com/griff/nixos-vagrant) which has automated builds and updates weekly. The builds on that project are very flaky though for...
I have gotten around the problem by having a checked out version of sandstorm-rust for calling capnpc so the schema files could be found. And the crate problem can be...
I did some work on just porting `membrane.c++` to rust to get a feel for what is missing to support this feature. The biggest thing missing is a trait for...
I did some more work on this and have hit a bit of a roadblock: In order to override the cap table I either need to have the cap table...
I now have something that more or less works but it is not always pretty. To get around CapTable ownership problems I needed to make two changes to the hooks....
The cost is mostly bourn by users of membranes but I did have to change `CapTable` from `Vec` to a new `Box` and I had to therefore wrap the Vec...