https://github.com/0xsio/bolt-rs
Communicate with Bolt-compatible graph databases in Rust! ⚡🔩
https://github.com/0xsio/bolt-rs
bolt client neo4j protocol rust
Last synced: about 1 month ago
JSON representation
Communicate with Bolt-compatible graph databases in Rust! ⚡🔩
- Host: GitHub
- URL: https://github.com/0xsio/bolt-rs
- Owner: 0xSiO
- License: mpl-2.0
- Created: 2019-12-20T04:49:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-05-15T23:15:28.000Z (about 1 year ago)
- Last Synced: 2025-03-31T08:12:18.309Z (about 2 months ago)
- Topics: bolt, client, neo4j, protocol, rust
- Language: Rust
- Homepage:
- Size: 963 KB
- Stars: 81
- Watchers: 3
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bolt-rs
[](https://github.com/0xSiO/bolt-rs/actions/workflows/ci.yml)## Overview
This project aims to provide a comprehensive set of libraries that allow for interaction with graph
database servers that support the [Bolt](https://neo4j.com/docs/bolt/current) protocol, namely,
[Neo4j](https://neo4j.com). This set of libraries allows interacting with servers supporting
versions 1 through 4.4 of the protocol, which includes Neo4j 3.1 through 4.4.### bolt-proto
[](https://crates.io/crates/bolt-proto)
[](https://docs.rs/bolt-proto)Contains the primitives used in the protocol. The `Message` and `Value` enums are of particular
importance, and are the primary units of information sent and consumed by Bolt clients/servers.### bolt-client
[](https://crates.io/crates/bolt-client)
[](https://docs.rs/bolt-client)Contains a runtime-agnostic asynchronous client for Bolt-compatible servers, as well as an optional
tokio-based `Stream` type that supports both insecure and secure TCP streams backed by
[rustls](https://docs.rs/rustls).### bb8-bolt
[](https://crates.io/crates/bb8-bolt)
[](https://docs.rs/bb8-bolt)A bolt-client adapter crate for the [bb8](https://crates.io/crates/bb8) connection pool.
### deadpool-bolt
[](https://crates.io/crates/deadpool-bolt)
[](https://docs.rs/deadpool-bolt)A bolt-client manager for the [deadpool](https://crates.io/crates/deadpool) connection pool.
### mobc-bolt
[](https://crates.io/crates/mobc-bolt)
[](https://docs.rs/mobc-bolt)A bolt-client manager for the [mobc](https://crates.io/crates/mobc) connection pool.
## Contributing
- Contributions to this project must be submitted under the [project's license](./LICENSE).
- Contributors to this project must attest to the [Developer Certificate of Origin](https://developercertificate.org/) by including a `Signed-off-by` statement in all commit messages.
- All commits must have a valid digital signature.