-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (37 loc) · 871 Bytes
/
Cargo.toml
File metadata and controls
45 lines (37 loc) · 871 Bytes
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
[package]
name = "relay"
version = "1.0.0"
edition = "2021"
publish = false
description = "HTTP relay for AWS Lambda."
authors = ["Teddy Byron <ted@tedbyron.com>"]
repository = "https://github.com/pillargg/relay"
readme = "README.md"
license = "AGPL-3.0-only"
keywords = ["aws", "lambda", "http"]
categories = ["web-programming::http-client", "network-programming"]
[features]
[dependencies]
bytes = "1.1.0"
lambda_http = "0.4.1"
tokio = "1.16.1"
lazy_static = "1.4.0"
[dependencies.reqwest]
version = "0.11.10"
default-features = false
features = ["rustls-tls"]
[dependencies.tracing]
version = "0.1.29"
features = ["attributes"]
[dependencies.tracing-subscriber]
version = "0.3.2"
features = ["fmt", "parking_lot"]
[dev-dependencies]
wiremock = "0.5.9"
[profile.dev]
debug = 0
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
# strip = "symbols"