blob: 9ad96f231a7da19d7f9ad5121831913f19159994 (
plain)
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
|
[package]
name = "batch-cognito"
version = "0.1.0"
authors = ["murilo ijanc' <murilo@ijanc.org>"]
edition = "2024"
homepage = "https://ijanc.org"
license = "ISC"
repository = "https://github.com/ijanc/batch-cognito"
rust-version = "1.89.0"
description = ""
[dependencies]
anyhow = "1.0.100"
aws-config = { version = "1.8.10", features = ["behavior-version-latest"] }
aws-sdk-cognitoidentityprovider = "1.103.0"
clap = { version = "4.5.52", features = ["derive", "env"] }
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread", "fs", "io-std"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
[lints.rust]
absolute_paths_not_starting_with_crate = "warn"
non_ascii_idents = "warn"
unit-bindings = "warn"
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)', 'cfg(coverage_nightly)'] }
tail_expr_drop_order = "warn"
unsafe_op_in_unsafe_fn = "warn"
unused_unsafe = "warn"
[lints.clippy]
all = { level = "warn", priority = -1 }
[profile.dev]
debug = false
[profile.test]
debug = false
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = "symbols"
debug = false
panic = "abort"
[profile.release-with-debug]
inherits = "release"
strip = false
debug = true
[profile.coverage]
inherits = "release"
opt-level = 2
codegen-units = 256
lto = "thin"
debug-assertions = true
overflow-checks = true
[profile.dev-no-debug-assertions]
inherits = "dev"
debug-assertions = false
|