-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (58 loc) · 1.78 KB
/
Cargo.toml
File metadata and controls
63 lines (58 loc) · 1.78 KB
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
[package]
name = "supabase-plus"
version = "0.8.13"
edition = "2024"
description = "An extra set of tools for managing Supabase projects going beyond the possibilities of regular Supabase CLI"
license = "MIT OR Apache-2.0"
repository = "https://github.com/dsplce-co/supabase-plus"
exclude = [".zed/*", "assets/*", ".github/*", "patches/*", "target/*"]
authors = ["v1olen <przemek@dsplce.co>", "d14mndz <barbara@dsplce.co>"]
keywords = ["cli", "dx", "supabase", "qol"]
categories = ["command-line-utilities", "database"]
[package.metadata.patch]
crates = ["throbberous", "promptuity"]
[patch.crates-io]
throbberous = { path = "./target/patch/throbberous-0.1.4" }
promptuity = { path = "./target/patch/promptuity-0.0.5" }
[[bin]]
name = "sbp"
path = "src/main.rs"
[features]
default = []
dev = []
[dependencies]
clap = { version = "4.5.35", features = ["derive"] }
enum_variant_type = "0.3.1"
duct = "1"
evt-trait-object = "0.1.0"
serde = { version = "1.0.160", features = ["derive"] }
figment = { version = "0.10.19", features = ["toml"] }
regex = "1.11.1"
lazy_static = "1.5.0"
bollard = "0.20"
async-trait = "0.1.89"
tokio = { version = "1.48.0", features = ["full"] }
clap_complete_command = "0.6.1"
homedir = "0.3.6"
dsplce-co-promptuity = { version = "0.0.5-supabase-plus-0.8" }
promptuity = "0.0.5"
mime_guess = "2.0.5"
chrono = "0.4.42"
tokio-postgres = "0.7.15"
watchexec = "=8.0.1"
watchexec-signals = "5.0.0"
watchexec-events = "6.0.0"
notify-types = "2.0.0"
futures-channel = "0.3.31"
futures-util = "0.3.31"
anyhow = "1.0.100"
glob = "0.3.3"
derive_setters = "0.1.8"
strum_macros = "0.27.2"
urlencoding = "2.1.3"
serde_json = "1.0.145"
supercli = { version = "0.1.1", features = ["clap"] }
heck = "0.5"
dsplce-co-throbberous = { version = "0.1.4-supabase-plus-0.8" }
throbberous = "0.1.4"
thiserror = "2.0.17"