Skip to content

Commit b44f27e

Browse files
committed
Client is now clone
Resolves #17
1 parent b5327a7 commit b44f27e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "supabase-auth"
33
authors = ["Eric Biggs"]
44
description = "Supabase Auth implementation following the official client libraries."
55
readme = "README.md"
6-
version = "0.10.8"
6+
version = "0.10.9"
77
edition = "2021"
88
license = "MIT OR Apache-2.0"
99
keywords = ["supabase", "supabase-auth", "authentication", "auth"]

src/models.rs

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ use serde_json::Value;
77
use std::{collections::HashMap, fmt::Display};
88

99
/// Supabase Auth Client
10+
#[derive(Clone)]
1011
pub struct AuthClient {
1112
pub(crate) client: Client,
1213
/// REST endpoint for querying and managing your database

0 commit comments

Comments
 (0)