-
Notifications
You must be signed in to change notification settings - Fork 60
/
Cargo.toml
58 lines (54 loc) · 1.88 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "sql-studio"
version = "0.1.32"
edition = "2021"
repository = "https://github.com/frectonz/sql-studio"
description = "Single binary, single command SQL Database Explorer."
authors = ["frectonz"]
[dependencies]
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.6", features = ["derive", "env"] }
color-eyre = "0.6.3"
include_dir = "0.7.3"
rusqlite = { version = "0.32.1", features = ["bundled"] }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
tokio = { version = "1.38.0", features = ["full"] }
tokio-rusqlite = "0.6.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
warp = "0.3.7"
open = "5.3.0"
async-trait = "0.1.80"
futures = "0.3.30"
tokio-postgres = "0.7.10"
mysql_async = { version = "0.34.1", default-features = false, features = ["rustls-tls", "default-rustls"] }
humantime = "2.1.0"
clickhouse = { version = "0.13.0", features = ["rustls-tls"] }
duckdb = { version = "1.0.0", features = ["bundled"] }
libsql = { version = "0.6.0", features = ["remote"] }
[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"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.21.1"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell", "powershell"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"]
# Whether to install an updater program
install-updater = true
# Skip checking whether the specified configuration files are up to date
allow-dirty = ["ci"]
# Path that installers should place binaries in
install-path = "CARGO_HOME"