-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (31 loc) · 975 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
40
41
42
43
44
45
46
[package]
name = "totp-server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lambda_http = "0.6.0"
axum-aws-lambda = "0.2.0"
aws-sdk-dynamodb = "0.16.0"
aws-config = "0.46.0"
aws-types = {version= "0.46.0", features= ["hardcoded-credentials"]}
tower = "0.4.13"
tokio = {version = "1.19.2", features = ["process"]}
hyper = {version = "0.14.20", features = ["full"]}
axum = "0.5.12"
once_cell = "1.13.0"
async_once = "0.2.1"
serde = {version = "1.0.139", features = ["derive"]}
serde_json = "1.0.82"
uuid = { version = "1.1.2", features = ["serde", "v4"] }
tracing = "0.1.29"
tracing-subscriber = { version = "0.3", features = ["tracing"] }
totp-lite = "2.0.0"
totp-rs = {version = "2.0.1", features = ["default", "qr"]}
koibumi-base32 = "0.0.2"
regex = "1.6.0"
http = "0.2.8"
rand = "0.8.5"
lazy_static = "1.4.0"
qrcode-generator = "4.1.6"
config = "0.13.1"