-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
72 lines (64 loc) · 2.08 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "query-rds-data"
version = "4.0.1"
authors = ["Bruce Adams <[email protected]>"]
edition = "2021"
categories = ["database", "command-line-utilities"]
description = "Query AWS RDS Data from the command line"
homepage = "https://github.com/bruceadams/query-rds-data"
keywords = ["aws", "cli", "database", "rds", "sql"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/bruceadams/query-rds-data"
[package.metadata.wix]
upgrade-guid = "64DEDA6E-4F29-4D84-89F1-5980100A2426"
path-guid = "075BF4CA-796D-4C0B-9581-16ED1E63B843"
license = false
eula = false
[dependencies]
anyhow = "1.0.79"
aws-config = "1.1.5"
aws-sdk-rds = "1.16.0"
aws-sdk-rdsdata = "1.13.0"
aws-sdk-secretsmanager = "1.15.0"
aws-types = "1.1.5"
csv = "1.3.0"
futures = "0.3.30"
serde_json = "1.0.113"
tracing = "0.1.40"
[dependencies.clap]
features = ["cargo", "derive", "env", "wrap_help"]
version = "4.5.0"
[dependencies.serde]
features = ["derive"]
version = "1.0.196"
[dependencies.tokio]
version = "1.36.0"
features = ["macros", "rt-multi-thread"]
[dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3.18"
# 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.10.0"
# CI backends to support
ci = ["github"]
# The installers to generate for each app
installers = ["shell", "powershell", "npm", "homebrew", "msi"]
# A GitHub repo to push Homebrew formulas to
tap = "bruceadams/homebrew-utilities"
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"]
# The archive format to use for windows builds (defaults .zip)
windows-archive = ".tar.gz"
# The archive format to use for non-windows builds (defaults .tar.xz)
unix-archive = ".tar.gz"
# Publish jobs to run in CI
publish-jobs = ["homebrew"]
# Publish jobs to run in CI
pr-run-mode = "plan"