Skip to content

Commit 6e5ab45

Browse files
authored
Merge pull request #11 from kacy/refactor/idiomatic-production-ready
Make crate idiomatic, production-ready, and easy to use
2 parents fd01c34 + bdf6767 commit 6e5ab45

6 files changed

Lines changed: 502 additions & 387 deletions

File tree

Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
[package]
22
name = "supabase-rust"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Kacy Fortner <kacy@kacyfortner.com>"]
55
edition = "2021"
66
description = "Rust client for Supabase"
77
repository = "https://github.com/kacy/supabase-rust.git"
88
homepage = "https://github.com/kacy/supabase-rust"
99
license = "MIT"
10+
keywords = ["supabase", "postgrest", "auth", "client"]
11+
categories = ["api-bindings", "web-programming::http-client"]
1012

1113
[dev-dependencies]
1214
rand = "0.9"
15+
tokio = { version = "1", features = ["rt", "macros"] }
1316

1417
[dependencies]
1518
jsonwebtoken = "9.3"
1619
reqwest = { version = "0.12", features = ["json"] }
1720
serde = { version = "1.0", features = ["derive"] }
1821
serde_json = "1.0"
19-
time = "0.3.37"
20-
tokio = { version = "1", features = ["full"] }
22+
thiserror = "2"

0 commit comments

Comments
 (0)