-
-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (42 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
46 lines (42 loc) · 1.45 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
[package]
name = "sql-studio"
version = "0.1.51"
edition = "2024"
repository = "https://github.com/frectonz/sql-studio"
description = "Single binary, single command SQL Database Explorer."
authors = ["frectonz"]
[dependencies]
chrono = { version = "0.4.41", features = ["serde"] }
clap = { version = "4.5.41", features = ["derive", "env"] }
color-eyre = "0.6.5"
include_dir = "0.7.4"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.141"
tokio = { version = "1.47.0", features = ["full"] }
tokio-rusqlite = { version = "0.6.0", features = ["bundled"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
warp = "0.3.7"
open = "5.3.2"
futures = "0.3.31"
tokio-postgres = "0.7.13"
mysql_async = { version = "0.36.1", default-features = false, features = ["rustls-tls", "default-rustls"] }
humantime = "2.2.0"
clickhouse = { version = "0.13.3", features = ["rustls-tls"] }
libsql = { version = "0.9.19", features = ["remote"] }
tiberius = { version = "0.12.3", default-features = false, features = ["rustls", "tds73", "tokio", "tokio-util"] }
tokio-util = "0.7.15"
tokio-postgres-rustls = "0.13.0"
rustls = "0.23"
webpki-roots = "1.0"
[target.'cfg(not(target_env = "musl"))'.dependencies]
duckdb = { version = "1.4.4", features = ["bundled"] }
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"