Frank Rehberger

Results 17 comments of Frank Rehberger

building a release might be realized as "Export" feature

Pull-Request #169 has been merged, now it will be possible to instantiate CustomSection the following way: let mut custom_section: CustomSection = Default::default();

In terms of code, what needs to be done? Is there any roadmap? Any TODOs?

Ah, thanks, I will check the run_io feature. Maybe, just a few ideas that came into mind: * Is there a way to restrict the modules that can be loaded...

Probably this ticket can be closed now. The size was related to a bug in Rust-lang, as rust kept dependencies to both, wee-alloc and dlmalloc. It was caused by some...

Hi, the use-cases of rsign and wasmsign differ * rsign is creating a generic, detached signature file *.rsign. * wasmsign is embedding the signature into the wasm-module, similar to embedded...

> When a user downloads software from a user they don't have a public key for, wapm downloads that public key, stores a local copy and only trusts that local...

I would propose to mange the certificates using DNSSEC-infrastructure, see SD-DNS TXT-record features (service discovery DNS). For example: Fetching a signed Wasm from http://example.org/mod1.wasm, the corresponding DNS-TXT record of example.org...

Proposal: AFAICS,, dealing with async termination of subprocesses is quiet challenging. For example the Posix framework does not permit to poll for term/read-events on process-ids (pid), but provides an async...

@stjepang The tokio-process implementation (POSIX) is using the painfull signal-approach (as documented at the top of [file](https://github.com/alexcrichton/tokio-process/blob/master/src/unix/mod.rs)). This solution requires a global child-queue and does not scale well. This solution...