-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
36 lines (31 loc) · 896 Bytes
/
Cargo.toml
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
[package]
name = "supabase_rs"
version = "0.4.0"
edition = "2021"
authors = ["Floris floris@xylex.ai"]
description = "Lightweight Rust client for Supabase REST and GraphQL"
license = "MIT"
readme = "README.md"
repository = "https://github.com/floris-xlx/supabase_rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.12.3", default-features = false, features = ["gzip", "json"] }
rand = "0.8.5"
serde_json = "1.0.111"
dotenv = "0.15.0"
anyhow = "1.0.86"
regex = { version = "1.10.5", optional = false }
serde = "1.0.204"
thiserror = "1.0.63"
[dev-dependencies]
tokio = { version = "1.37.0", features = ["full"] }
[features]
default = ["native_tls"]
nightly = []
storage = []
rustls = ["reqwest/rustls-tls"]
native_tls = ["reqwest/native-tls"]
# default = ["nightly", "storage"]
# #
# #
# realtime = []