Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the rust driver to the list of community drivers (#441) #445

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 25 additions & 2 deletions modules/ROOT/pages/languages-guides/community-drivers/index.adoc
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[[community-drivers]]
= Community-contributed libraries
:description: Neo4j community-contributed drivers, community projects, php, ruby, perl, java jdbc.
:description: Neo4j community-contributed drivers, community projects, php, ruby, perl, java jdbc, rust.
:examples: https://github.com/neo4j-examples
:aura_signup: https://neo4j.com/cloud/aura/?ref=developer-guides


== Introduction

In addition to the officially supported drivers, you can find their Community alternatives.
Besides Java, .NET, JavaScript, Go, and Python drivers, Neo4j Community offers support for Ruby, PHP, and Perl.
Besides Java, .NET, JavaScript, Go, and Python drivers, Neo4j Community offers support for Ruby, PHP, Perl, and Rust.
Links to their relevant resources are provided below.

Members of the each programming language community have invested a lot of time and love to develop each one of the community drivers for Neo4j, so if you use any one of them, please provide feedback to the authors.
Expand Down Expand Up @@ -225,3 +225,26 @@ A Django plugin https://github.com/neo4j-contrib/django-neomodel[django_neomodel
| icon:github[] Source | https://github.com/z5labs/gogm
| icon:book[] Docs | https://github.com/mindstand/gogm/blob/master/README.md
|===

[[neo4j-rust]]
== Using Neo4j from Rust

[#neo4rs]
=== neo4rs

Neo4j can be used from Rust using the https://github.com/neo4j-labs/neo4rs[neo4rs driver].
*neo4rs* supports using Neo4j via *Bolt*, starting from Neo4j 4.4 up until the most recent version.

You can also ask questions on the link:https://discord.com/invite/neo4j[Neo4j Community Discord] in the link:https://discord.com/channels/787399249741479977/1052516552517357588[`#drivers`] channel.

[cols="1,4"]
|===
| icon:user[] Authors | link:https://github.com/knutwalker[knutwalker]
| icon:github[] Source | https://github.com/neo4j-labs/neo4rs
| icon:gift[] Package | https://crates.io/crates/neo4rs[neo4rs on crates.io]
| icon:book[] Docs | https://docs.rs/neo4rs/latest/neo4rs/[neo4rs on docs.rs]
| icon:play-circle[] Example | {examples}/movies-rust-bolt
| icon:code-fork[] Rust | 1.75+
| icon:code-fork[] Neo4j | 4.4+
| Protocols | Bolt
|===
Loading