rsp-rs 0.3.5

A RDF Stream Processing engine in Rust, supporting RSP-QL queries with sliding windows and real-time analytics
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() -> Result<(), Box<dyn std::error::Error>> {
    println!("RSP-RS: RDF Stream Processing Engine for Rust");
    println!("================================================\n");

    println!("This is a library for RDF Stream Processing.");
    println!("Run tests to see usage:\n");
    println!("  cargo test");
    println!("  cargo test --test integration_tests\n");

    Ok(())
}