Skip to content

Commit da7589a

Browse files
authored
Update runtime dependencies to 1.0.x
1 parent 7056d9b commit da7589a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

template/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ edition = "2021"
88
{% if event_type_import == "serde_json::Value" -%}
99
serde_json = "1"
1010
{% else -%}
11-
aws_lambda_events = { version = "{{ aws_lambda_events_version | default: "0.15.1" }}", default-features = false, features = ["{{ event_type_feature }}"] }
11+
aws_lambda_events = { version = "{{ aws_lambda_events_version | default: "1.0.0" }}", default-features = false, features = ["{{ event_type_feature }}"] }
1212
{% endif -%}
1313
{% endif -%}
1414
{% if http_function -%}
1515
{%- if http_feature -%}
16-
lambda_http = { version = "{{ lambda_http_version | default: "0.13.0" }}", default-features = false, features = ["{{ http_feature }}", "tracing"] }
16+
lambda_http = { version = "{{ lambda_http_version | default: "1.0.0" }}", default-features = false, features = ["{{ http_feature }}", "tracing"] }
1717
{%- else -%}
18-
lambda_http = "{{ lambda_http_version | default: "0.13.0" }}"
18+
lambda_http = "{{ lambda_http_version | default: "1.0.0" }}"
1919
{%- endif -%}
2020
{%- endif %}
2121
{% if http_function != true -%}
22-
lambda_runtime = "{{ lambda_runtime_version | default: "0.13.0" }}"
22+
lambda_runtime = "{{ lambda_runtime_version | default: "1.0.1" }}"
2323
{%- endif %}
2424
{% if basic_example -%}
2525
serde = "1"

0 commit comments

Comments
 (0)