-
-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (41 loc) · 1.45 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (41 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
[package]
name = "sql-studio"
version = "0.1.52"
edition = "2024"
repository = "https://github.com/frectonz/sql-studio"
description = "Single binary, single command SQL Database Explorer."
authors = ["frectonz"]
[dependencies]
chrono = { version = "0.4.45", features = ["serde"] }
clap = { version = "4.6.6", features = ["derive", "env"] }
clickhouse = { version = "0.15.1", features = ["rustls-tls"] }
color-eyre = "0.6.5"
futures = "0.3.34"
humantime = "2.4.0"
include_dir = "0.7.4"
libsql = { version = "0.9.30", features = ["remote"] }
mysql_async = { version = "0.37.0", default-features = false, features = ["rustls-tls", "default-rustls"] }
open = "5.4.1"
rustls = "0.23.43"
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
tiberius = { version = "0.12.3", default-features = false, features = ["rustls", "tds73", "tokio", "tokio-util"] }
tokio = { version = "1.53.1", features = ["full"] }
tokio-postgres = "0.7.18"
tokio-postgres-rustls = "0.14.0"
tokio-rusqlite = { version = "0.7.0", features = ["bundled"] }
tokio-util = "0.7.19"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
warp = { version = "0.4.3", features = ["server"] }
webpki-roots = "1.0.9"
duckdb = { version = "1.10505.0", features = ["bundled", "parquet"] }
[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"