-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 900 Bytes
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 900 Bytes
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
[package]
name = "dbdev"
version = "0.1.7"
edition = "2021"
authors = ["supabase"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.102"
clap = { version = "4.6.0", features = ["derive"] }
dirs = "6.0.0"
futures = "0.3.32"
postgrest = "1.6.0"
rand = "0.10.0"
regex = "1.12.3"
reqwest = { version = "0.13.2", features = ["json", "native-tls-vendored"] }
rpassword = "7.4.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
sqlx = { version = "0.8.6", features = [
"postgres",
"chrono",
"uuid",
"runtime-tokio-rustls",
] }
tempfile = "3.27.0"
thiserror = "2.0.18"
tokio = { version = "1.51.0", features = ["full"] }
toml = { version = "1.1.2", features = ["preserve_order"] }
url = { version = "2.5.8", features = ["serde"] }
uuid = { version = "1.23.0", features = ["serde"] }