-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (27 loc) · 998 Bytes
/
Cargo.toml
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
[package]
authors = ["David Wallace Croft <[email protected]>"]
# Use the categories from https://crates.io/categories
# categories = ["category-name"]
description = "Cargo Lambda Prototype"
edition = "2021"
homepage = "https://www.CroftSoft.com/"
# https://doc.rust-lang.org/cargo/reference/manifest.html#the-keywords-field
# keywords = ["keyword"]
# Remark this line out if your project is not open source
license = "MIT"
name = "cargo-lambda-prototype"
# Change this value to true when you publish to crates.io
publish = false
readme = "README.md"
# Remark this line out if your project is not in a code repository
repository = "https://github.com/david-wallace-croft/cargo-lambda-prototype"
rust-version = "1.63"
version = "0.0.0-SNAPSHOT"
[dependencies]
lambda_http = "0.10"
lambda_runtime = "0.10"
tokio = { version = "1", features = ["macros"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", default-features = false, features = [
"fmt",
] }