pipes 0.0.1

Stream-based programming with compositional pipelines in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
#![crate_name="pipes"]
#![crate_type="lib"]

#![license = "MIT"]
#![doc(html_root_url = "http://www.rust-ci.org/epsilonz/pipes.rs/doc/pipes/")]

#![feature(phase)]
#![feature(unboxed_closures)]

#[phase(link, plugin)]
extern crate free_macros;

pub mod proxy;