2 releases
0.1.1 | Jul 23, 2022 |
---|---|
0.1.0 | Jul 2, 2022 |
#2254 in Development tools
Used in 2 crates
40KB
625 lines
gotrue-rs
This is a GoTrue client implementation in rust. The library is currently under development. Most of the features are already built in, but there are still some changes to be made and everything still needs to be documented.
Usage
Add the following line to your Cargo.toml
:
go_true = "0.1.1"
Examples
To create an account, create a new client and execute the sign_up
function with email and password:
use go_true::Client;
#[tokio::main]
async fn main() {
let url = "http://localhost:9998".to_string();
let mut client = Client::new(url);
let email = "email@example.com".to_string();
let password = "Abcd1234!".to_string();
let session = client.sign_up(&email, &password).await;
println!("{:?}", session);
}
For more information, check out the API docs!
Testing
The first thing to do is to start the supabase server in docker:
cd infra
docker compose up
Once the server has been started, the tests can be run:
cargo test --tests
Contributing
Contributions, issues and feature requests are welcome. Feel free to check out the issues page if you want to contribute.
Dependencies
~4–20MB
~224K SLoC