1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
//! # supabase-client-rs
//!
//! A Rust client for [Supabase](https://supabase.com), the open-source Firebase alternative.
//!
//! This crate provides a unified interface to Supabase services by composing existing
//! community crates:
//!
//! - **Database**: Uses [`postgrest-rs`](https://crates.io/crates/postgrest) for PostgREST queries
//! - **Realtime**: Integrates with [`supabase-realtime-rs`](https://github.com/scaraude/supabase-realtime-rs)
//! - **Auth, Storage, Functions**: Extensible via traits for community implementations
//!
//! ## Quick Start
//!
//! ```rust,no_run
//! use supabase_client_rs::SupabaseClient;
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! // Create a client
//! let client = SupabaseClient::new(
//! "https://your-project.supabase.co",
//! "your-anon-key"
//! )?;
//!
//! // Query the database
//! let response = client
//! .from("users")
//! .select("id, name, email")
//! .eq("active", "true")
//! .execute()
//! .await?;
//!
//! let body = response.text().await?;
//! println!("Users: {}", body);
//!
//! Ok(())
//! }
//! ```
//!
//! ## Database Queries
//!
//! The client wraps `postgrest-rs` and provides a fluent API for database operations:
//!
//! ```rust,no_run
//! # use supabase_client_rs::SupabaseClient;
//! # async fn example() -> Result<(), Box<dyn std::error::Error>> {
//! # let client = SupabaseClient::new("url", "key")?;
//! // Select with filters
//! let users = client
//! .from("users")
//! .select("*")
//! .eq("status", "active")
//! .order("created_at.desc")
//! .limit(10)
//! .execute()
//! .await?;
//!
//! // Insert
//! let new_user = client
//! .from("users")
//! .insert(r#"{"name": "Alice", "email": "alice@example.com"}"#)
//! .execute()
//! .await?;
//!
//! // Update
//! let updated = client
//! .from("users")
//! .update(r#"{"status": "inactive"}"#)
//! .eq("id", "123")
//! .execute()
//! .await?;
//!
//! // Delete
//! let deleted = client
//! .from("users")
//! .delete()
//! .eq("id", "123")
//! .execute()
//! .await?;
//!
//! // RPC (stored procedures)
//! let result = client
//! .rpc("get_user_stats", r#"{"user_id": "123"}"#)
//! .execute()
//! .await?;
//! # Ok(())
//! # }
//! ```
//!
//! ## Configuration
//!
//! For advanced configuration, use `SupabaseConfig`:
//!
//! ```rust,no_run
//! use supabase_client_rs::{SupabaseClient, SupabaseConfig};
//! use std::time::Duration;
//!
//! let config = SupabaseConfig::new(
//! "https://your-project.supabase.co",
//! "your-anon-key"
//! )
//! .schema("custom_schema")
//! .timeout(Duration::from_secs(60))
//! .header("X-Custom-Header", "value");
//!
//! let client = SupabaseClient::with_config(config).unwrap();
//! ```
//!
//! ## Authenticated Requests
//!
//! After a user signs in, set their JWT:
//!
//! ```rust,no_run
//! # use supabase_client_rs::SupabaseClient;
//! # fn example() -> Result<(), Box<dyn std::error::Error>> {
//! # let client = SupabaseClient::new("url", "key")?;
//! // Get JWT from your auth flow
//! let user_jwt = "eyJhbGciOiJIUzI1NiIs...";
//!
//! // Create an authenticated client
//! let auth_client = client.with_jwt(user_jwt)?;
//!
//! // Now requests include the user's JWT
//! // RLS policies will apply based on the user
//! # Ok(())
//! # }
//! ```
//!
//! ## Extending with Community Crates
//!
//! This crate defines traits for auth, storage, and functions that community
//! crates can implement. See the [`traits`] module for details.
//!
//! ## Feature Flags
//!
//! - `rustls` (default): Use rustls for TLS
//! - `native-tls`: Use native TLS instead of rustls
//! - `realtime`: Enable Supabase Realtime support (requires `supabase-realtime-rs`)
// Re-export main types
pub use SupabaseClient;
pub use SupabaseConfig;
pub use ;
// Re-export postgrest for advanced usage
pub use postgrest;
// Re-export realtime types when feature is enabled
pub use supabase_realtime_rs;
/// Create a new Supabase client.
///
/// This is a convenience function equivalent to `SupabaseClient::new()`.
///
/// # Example
///
/// ```rust,no_run
/// use supabase_client_rs::create_client;
///
/// let client = create_client(
/// "https://your-project.supabase.co",
/// "your-anon-key"
/// ).unwrap();
/// ```