-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
112 lines (106 loc) · 3.58 KB
/
Cargo.toml
File metadata and controls
112 lines (106 loc) · 3.58 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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[workspace]
members = [
"cloud-sql-connector",
"cmd-proc",
"git-proc",
"greenhell",
"manager",
"typed-reqwest",
"mlambda",
"mmigration",
"ociman",
"pg-client",
"pg-ephemeral",
"stack-deploy",
"stratosphere",
"stratosphere-core",
"stratosphere-generator",
"wtt",
]
resolver = "3"
[workspace.package]
authors = ["Markus Schirp <mbj@schirp-dso.com>"]
edition = "2024"
rust-version = "1.95"
[workspace.dependencies]
# Pinned to 1.129 as global `cargo update` resolves to 1.119 due to a
# crc/crc-fast version conflict. 1.119 pulls in lru 0.12.5, which has a
# security advisory (GHSA-2qph-qpvm-2qf7). 1.129 pulls in lru 0.16.3.
aws-sdk-s3 = { version = "1.133", default-features = false }
async-stream = "0.3"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.6", features = ["derive"] }
cmd-proc = { version = "0.6.1", path = "cmd-proc" }
comfy-table = "7"
dirs = "6"
env_logger = "0.11"
fluent-uri = { version = "0.4", features = ["net"] }
git-proc = { version = "0.5.1", path = "git-proc" }
google-cloud-gax = "1"
google-cloud-sql-v1 = "2"
hex = "0.4.3"
ipnet = { version = "2", features = ["serde"] }
http = "1.4"
indoc = "2"
itertools = "0.14"
log = "0.4"
typed-reqwest = { version = "0.0.3", path = "typed-reqwest" }
mmigration = { path = "mmigration" }
nom = "8"
nom-language = "0.1"
ociman = { version = "0.7.0", path = "ociman" }
pg-client = { version = "0.6.0", path = "pg-client", features = ["sqlx"] }
pg-ephemeral = { version = "0.5.1", path = "pg-ephemeral" }
pretty_assertions = "1.4"
prettyplease = "0.2"
proc-macro2 = "1"
quote = "1"
rand = "0.10"
regex-lite = "0.1.9"
reqwest = { version = "0.13", features = ["json", "query", "rustls"], default-features = false }
rsa = { version = "0.9", features = ["pem"] }
rustix = { version = "1", features = ["process"] }
rustls = "0.23"
rustls-pemfile = "2"
semver = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["arbitrary_precision", "indexmap"] }
serde_path_to_error = "0.1"
sha2 = "0.11"
sqlx = { package = "msqlx", version = "0.9.0-msqlx.2", features = ["postgres", "runtime-tokio", "tls-rustls"] }
stratosphere = { version = "0.1.0", path = "./stratosphere" }
stratosphere-core = { version = "0.1.0", path = "./stratosphere-core" }
stratosphere-generator = { version = "0.1.0", path = "./stratosphere-generator" }
strum = { version = "0.28", features = ["derive"] }
syn = { version = "2", features = ["derive"] }
thiserror = "2"
tokio = { version = "1", features = ["io-std", "macros", "rt"] }
tokio-rustls = "0.26"
toml = { version = "1.0", features = ["preserve_order"] }
toml_edit = "0.25"
tower = { version = "0.5", features = ["limit"], default-features = false }
tower-service = "0.3"
futures-util = { version = "0.3", default-features = false }
url = { version = "2.5", features = ["serde"] }
walkdir = "2.5"
wtt = { version = "0.1.0", path = "wtt" }
[workspace.lints.rust]
unexpected_cfgs = "deny"
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
multiple_crate_versions = "deny"
must_use_candidate = "deny"
uninlined_format_args = "deny"
[profile.release]
# Panic on integer overflow instead of wrapping
overflow-checks = true
# Optimize for size rather than speed
opt-level = "z"
# Enable Link Time Optimization for better optimization across crates
lto = true
# Reduce number of codegen units to improve optimization (at cost of compile time)
codegen-units = 1
# Minimal debug info for file paths and line numbers in backtraces
debug = "line-tables-only"
# Pack debug info into .dSYM on macOS (required for backtraces with line numbers)
split-debuginfo = "packed"