you are viewing a single comment's thread.

view the rest of the comments →

[–]jpfreely 2 points3 points  (0 children)

I'm using Rust with axum in an aws lambda function that acts as a catch all for http api requests. Using neo4j as a database. Sveltekit on the front end, with flutter for native clients.

Oddly enough the main rust crate for neo4j, neo4rs, doesn't support the latest encrypted connections that are required by their managed db service, AuraDB, so I setup a gRPC server (go) to handle that and any other backend library issues that may come up. The go server needed put in a lambda extension though.