-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (33 loc) · 894 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
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "serverless-payments-rs"
version = "0.1.0"
edition = "2021"
[lib]
name = "serverless_payments"
path = "src/lib.rs"
[[bin]]
name = "initiate_payment"
path = "src/initiate_payment.rs"
[[bin]]
name = "finish_payment"
path = "src/finish_payment.rs"
[dependencies]
# for cross compiling
openssl = { version = "0.10", features = ["vendored"] }
# for the async runtime
tokio = { version = "1", features = ["full"] }
# for json (de)serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# for working with Stripe
async-stripe = { version = "0.22", features = ["runtime-tokio-hyper"] }
# for communicating with DynamoDB
aws-sdk-dynamodb = "0.29.0"
aws-config = "0.56.0"
# for the Lambda runtime
lambda_http = "0.8.1"
# for logging
tracing = "0.1"
tracing-subscriber = "0.3"
# for generating payment IDs
uuid = { version = "1.4.1", features = ["v4"] }