Skip to content

Commit 3fa8df3

Browse files
author
David Barsky
authored
internal: internal cleanup; correctness (awslabs#214)
1 parent ebc5474 commit 3fa8df3

File tree

7 files changed

+808
-415
lines changed

7 files changed

+808
-415
lines changed

Cargo.lock

Lines changed: 269 additions & 115 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lambda/Cargo.toml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ version = "0.1.0"
44
authors = ["David Barsky <[email protected]>"]
55
edition = "2018"
66

7+
[features]
8+
# no features by default
9+
default = ["simulated", "derive"]
10+
simulated = []
11+
derive = ["lambda-attributes"]
12+
713
[dependencies]
814
tokio = { version = "0.2.4", features = ["full"] }
915
hyper = "0.13"
@@ -12,5 +18,10 @@ serde_json = "1.0.39"
1218
tower-service = "0.3"
1319
bytes = "0.5"
1420
http = "0.2"
15-
lambda-attributes = { path = "../lambda-attributes", version = "0.1.0" }
16-
futures = "0.3.1"
21+
lambda-attributes = { path = "../lambda-attributes", version = "0.1.0", optional = true}
22+
genawaiter = { version = "0.99", features = ["futures03"] }
23+
futures = "0.3"
24+
tracing = "0.1.13"
25+
tracing-futures = "0.2.3"
26+
tracing-error = "0.1.2"
27+
anyhow = "1.0.27"

0 commit comments

Comments
 (0)