-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (23 loc) · 861 Bytes
/
Cargo.toml
File metadata and controls
24 lines (23 loc) · 861 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
[package]
name = "stm-html"
version = "0.1.1"
authors = ["rimutaka <[email protected]>"]
edition = "2018"
[dependencies]
tera = { version = "1", default-features = false, features = ["builtins"] }
serde_json = "1"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.0", features = ["full"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = "0.2"
log = "0.4"
lambda_runtime = { git = "https://github.com/awslabs/aws-lambda-rust-runtime.git" }
hyper = { version = "0.14", features = ["http2"] }
hyper-rustls = "0.22"
regex = "1.4"
rust-embed = { version = "5.9", features = ["compression"] }
rusoto_signature = "0.46"
rusoto_sqs = { version = "0.46", features = ["rustls"], default-features = false }
rusoto_core = { version = "0.46", features = ["rustls"], default-features = false }
futures = "0.3"
urlencoding = "1.1"