├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── shell.nix ├── src ├── assignments.rs ├── conversions.rs ├── error.rs ├── graph.rs ├── lib.rs └── result_set.rs └── tests ├── assignments_test.rs ├── common └── mod.rs ├── conversions_test.rs └── graph_test.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malte-v/redisgraph-rs/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malte-v/redisgraph-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malte-v/redisgraph-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malte-v/redisgraph-rs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malte-v/redisgraph-rs/HEAD/README.md -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malte-v/redisgraph-rs/HEAD/shell.nix -------------------------------------------------------------------------------- /src/assignments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malte-v/redisgraph-rs/HEAD/src/assignments.rs -------------------------------------------------------------------------------- /src/conversions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malte-v/redisgraph-rs/HEAD/src/conversions.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malte-v/redisgraph-rs/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malte-v/redisgraph-rs/HEAD/src/graph.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malte-v/redisgraph-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/result_set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malte-v/redisgraph-rs/HEAD/src/result_set.rs -------------------------------------------------------------------------------- /tests/assignments_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malte-v/redisgraph-rs/HEAD/tests/assignments_test.rs -------------------------------------------------------------------------------- /tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malte-v/redisgraph-rs/HEAD/tests/common/mod.rs -------------------------------------------------------------------------------- /tests/conversions_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malte-v/redisgraph-rs/HEAD/tests/conversions_test.rs -------------------------------------------------------------------------------- /tests/graph_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malte-v/redisgraph-rs/HEAD/tests/graph_test.rs --------------------------------------------------------------------------------