Re: [rust-dev] Async Message passing.

2014-09-29 Thread Wink Saville
Braun ike.br...@googlemail.com wrote: I havn't looked at it in detail, but nanomsg [1] seems to cover these requirements. There's a rust binding [2] available too. Regards, Heiko [1] http://nanomsg.org [2] https://github.com/thehydroimpulse/nanomsg.rs On 28 Sep 2014, at 03:54, Wink

Re: [rust-dev] Async Message passing.

2014-09-29 Thread Wink Saville
On Mon, Sep 29, 2014 at 1:10 PM, Paul Colomiets p...@colomiets.name wrote: Hi, On Mon, Sep 29, 2014 at 11:01 PM, Wink Saville w...@saville.com wrote: Nanomsg looks interesting and I'll take a closer look. But I'm interested in a pure rust implementation of async messaging because I'd like

Re: [rust-dev] Async Message passing.

2014-09-29 Thread Wink Saville
: On Mon, Sep 29, 2014 at 1:01 PM, Wink Saville w...@saville.com wrote: Nanomsg looks interesting and I'll take a closer look. But I'm interested in a pure rust implementation of async messaging because I'd like to create an embedded OS using rust and not use C if possible You might take

Re: [rust-dev] Async Message passing.

2014-09-29 Thread Wink Saville
Perfect! On Mon, Sep 29, 2014 at 9:50 PM, Clark Gaebel cg.wowus...@gmail.com wrote: These are the semantics of a boxed value. On Mon, Sep 29, 2014 at 9:47 PM, Wink Saville w...@saville.com wrote: On Mon, Sep 29, 2014 at 1:10 PM, Paul Colomiets p...@colomiets.name wrote: Hi

[rust-dev] Async Message passing.

2014-09-27 Thread Wink Saville
I'd like to have one API which would allow sending/receiving messages asynchronously, safely and efficiently over any transport and should work for components that run in the same thread, different threads, different processes or between devices which might be connected via any arbitrary

Re: [rust-dev] Rust compiler for Risc-v

2014-09-23 Thread Wink Saville
So after some more research, maybe we can use rustc --emit=ir or --emit=bc and then feed the output file to llc in the riscv compiler tool chain. On Sep 22, 2014 6:30 PM, Wink Saville w...@saville.com wrote: Thanks for the heads up on Zinc http://zink.rs, looks to be originally announced

[rust-dev] Rust compiler for Risc-v

2014-09-22 Thread Wink Saville
I'm interested in writing deeply embedded low level Rust code for risc-v ( http://riscv.org/) that thus don't expect to need a significant runtime library. As such I expect to use #![no_std] and #![no_start]. Anyway, there is a risc-v llvm compiler ( http://riscv.org/download.html#tab_llvm) and

Re: [rust-dev] Rust compiler for Risc-v

2014-09-22 Thread Wink Saville
Thanks for the heads up on Zinc http://zink.rs, looks to be originally announced on this list here https://mail.mozilla.org/pipermail/rust-dev/2014-April/009618.html and its github page is here https://github.com/hackndev/zinc. So I happy to see someone else is interested in rust on riscv. I