-
-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathCargo.toml
More file actions
107 lines (99 loc) · 3.86 KB
/
Cargo.toml
File metadata and controls
107 lines (99 loc) · 3.86 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
[workspace]
members = [
"crates/cargo-lambda-build",
"crates/cargo-lambda-cli",
"crates/cargo-lambda-deploy",
"crates/cargo-lambda-interactive",
"crates/cargo-lambda-invoke",
"crates/cargo-lambda-metadata",
"crates/cargo-lambda-new",
"crates/cargo-lambda-remote",
"crates/cargo-lambda-system",
"crates/cargo-lambda-watch",
]
exclude = [
"tests/fixtures/single-binary-package",
"tests/fixtures/single-binary-package-build-include",
"tests/fixtures/mixed-workspace-package",
"tests/fixtures/missing-binary-package",
"tests/fixtures/multi-binary-package",
"tests/fixtures/target-dir-set-in-project",
"tests/fixtures/workspace-package",
"tests/fixtures/single-binary-different-name",
"tests/fixtures/examples-package",
"tests/fixtures/watch-multi-binary",
"tests/fixtures/package-with-global-config",
"tests/fixtures/config-with-context",
"tests/fixtures/workspace-with-package-config",
]
resolver = "2"
[workspace.package]
version = "1.9.1"
authors = ["David Calavera"]
edition = "2024"
license = "MIT"
homepage = "https://github.com/cargo-lambda/cargo-lambda"
repository = "https://github.com/cargo-lambda/cargo-lambda"
keywords = ["cargo", "subcommand", "aws", "lambda"]
description = "Cargo subcommand to work with AWS Lambda"
rust-version = "1.85.0"
[workspace.dependencies]
assertables = "9.0.0"
aws-config = "1.5.11"
aws-credential-types = "1.2.1"
aws-sdk-cloudwatchlogs = { version ="1.54.0", features = ["behavior-version-latest"] }
aws-sdk-iam = { version ="1.54.0", features = ["behavior-version-latest"] }
aws-sdk-lambda = { version ="1.61.0", features = ["behavior-version-latest"] }
aws-sdk-s3 = { version ="1.61.0", features = ["behavior-version-latest"] }
aws-sdk-sts = { version ="1.52.0", features = ["behavior-version-latest"] }
aws-smithy-runtime = { version = "1.7.5", features = ["test-util"] }
aws-smithy-types = "1.2.10"
aws-types = "1.3.3"
base64 = "0.21.2"
cargo-lambda-build = { version = "1.9.1", path = "crates/cargo-lambda-build" }
cargo-lambda-deploy = { version = "1.9.1", path = "crates/cargo-lambda-deploy" }
cargo-lambda-interactive = { version = "1.9.1", path = "crates/cargo-lambda-interactive" }
cargo-lambda-invoke = { version = "1.9.1", path = "crates/cargo-lambda-invoke" }
cargo-lambda-metadata = { version = "1.9.1", path = "crates/cargo-lambda-metadata" }
cargo-lambda-new = { version = "1.9.1", path = "crates/cargo-lambda-new" }
cargo-lambda-remote = { version = "1.9.1", path = "crates/cargo-lambda-remote" }
cargo-lambda-system = { version = "1.9.1", path = "crates/cargo-lambda-system" }
cargo-lambda-watch = { version = "1.9.1", path = "crates/cargo-lambda-watch" }
cargo_metadata = "0.15.3"
cargo-options = { version = "0.7.5", features = ["serde"] }
cargo-zigbuild = "0.20.1"
clap = { version = "4.4.2", features = ["derive"] }
chrono = { version = "0.4.38", default-features = false, features = ["clock"] }
dirs = "4"
dunce = "1.0.3"
figment = { version = "0.10.19", features = ["env", "test", "toml"] }
home = "0.5.3"
miette = { version = "5.10.0" }
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls-native-roots",
] }
rustls = "0.23.17"
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
strum = "0.24.0"
strum_macros = "0.24.0"
tempfile = "3.3.0"
thiserror = "1.0.31"
tokio = "1.18.2"
toml = "0.8.19"
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.5.0", features = ["v4"] }
which = "4.2.5"
zip = { version = "2", features = ["bzip2", "chrono", "deflate"] }
[profile.release]
strip = "symbols"
codegen-units = 1
lto = true
[profile.dev.build-override]
opt-level = 3
[profile.test]
opt-level = 1 # Slight optimization for test code
debug = 1 # Reduce debug info size
[profile.dev.package."*"]
opt-level = 2 # Optimize dependencies in dev mode