-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 1.14 KB
/
Copy pathCargo.toml
File metadata and controls
38 lines (35 loc) · 1.14 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
[package]
name = "dsql-gen"
version = "0.1.0"
edition = "2024"
[dependencies]
tokio = { version = "1", features = ["full"] }
aws-config = "1"
aws-sdk-dsql = "1"
aws-sdk-cloudwatch = "1"
clap = { version = "4", features = ["derive", "env"] }
tokio-retry = "0.3.0"
anyhow = { version = "1.0.98", features = ["backtrace"] }
hdrhistogram = "7.5"
chrono = "0.4"
serde_json = "1.0"
byte-unit = "5.1.6"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt"] }
tracing = "0.1.41"
tracing-appender = "0.2.3"
postgres-native-tls = "0.5.1"
tokio-postgres = { version = "0.7.13", features = ["with-uuid-1"] }
native-tls = { version = "0.2.14", features = ["alpn"] }
async-trait = "0.1.88"
async-rate-limiter = { version = "1", features = ["rt-tokio"] }
futures = "0.3.31"
uuid = { version = "1.7.0", features = ["v4", "serde"] }
rand = "0.9.1"
indicatif = { version = "0.18.0", features = ["tokio"] }
console = "0.16.0"
indexmap = "2.10.0"
extend = "1.2.0"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = { version = "0.6.0", features = ["profiling", "unprefixed_malloc_on_supported_platforms"] }
[profile.release]
debug = 1