neo4rs 0.8.0

Rust driver for Neo4j
Documentation
1
2
3
4
5
6
7
8
9
10
11
use neo4rs::*;

mod container;

#[tokio::test]
async fn raw_bytes() {
    let neo4j = container::Neo4jContainer::new().await;
    let graph = neo4j.graph();

    include!("../include/raw_bytes.rs");
}