forked from aws/aws-lambda-rust-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 778 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (24 loc) · 778 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
[package]
name = "lambda_runtime_core"
version = "0.1.2"
authors = ["Stefano Buliani", "David Barsky"]
description = "Rust runtime for AWS Lambda"
keywords = ["AWS", "Lambda", "Runtime", "Rust"]
license = "Apache-2.0"
homepage = "https://github.com/awslabs/aws-lambda-rust-runtime"
repository = "https://github.com/awslabs/aws-lambda-rust-runtime"
documentation = "https://docs.rs/lambda_runtime_core"
edition = "2018"
[dependencies]
log = "^0.4"
hyper = "^0.12"
tokio = "^0.1"
backtrace = "^0.3"
chrono = "^0.4"
failure = "^0.1"
lambda_runtime_client = { path = "../lambda-runtime-client", version = "^0.2" }
lambda_runtime_errors = { path = "../lambda-runtime-errors", version = "^0.1" }
[dev-dependencies]
simple_logger = "^1.0"
[build-dependencies]
rustc_version = "^0.2"