-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (48 loc) · 1.36 KB
/
Cargo.toml
File metadata and controls
54 lines (48 loc) · 1.36 KB
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
47
48
49
50
51
52
53
54
[package]
name = "raktar"
version = "0.1.0"
edition = "2021"
license-file = "LICENSE"
[lib]
name = "raktar"
path = "application/lib.rs"
[[bin]]
name = "raktar-handler"
path = "application/main.rs"
[[bin]]
name = "raktar-pre-token-handler"
path = "application/pre_token_handler.rs"
[features]
local = []
[dependencies]
anyhow = "^1.0.68"
async-graphql = "^5.0.7"
async-graphql-axum = "^5.0.7"
async-trait = "^0.1.68"
aws-config = "^0.55.0"
aws-sdk-dynamodb = "^0.27.0"
aws-sdk-s3 = "^0.27.0"
aws-smithy-http = "0.55.2"
axum = { version = "^0.6.12", features = ["macros"] }
base64 = "0.21.0"
byteorder = "^1.4.3"
futures = "0.3.28"
hex = "0.4.3"
http = "0.2.9"
lambda-web = { version = "^0.2.1", features = ["hyper"] }
lambda_runtime = "^0.7"
rand = "0.8.5"
semver = { version = "^1.0.17", features = ["serde"] }
serde = { version = "^1.0.159", features = ["derive"] }
serde_dynamo = { version = "^4.2.0", features = ["aws-sdk-dynamodb+0_27"] }
serde_json = "^1.0.95"
sha2 = "^0.10.6"
thiserror = "1.0.40"
tokio = { version = "^1.23.0", features = ["macros", "parking_lot", "rt-multi-thread", "sync"] }
tower-http = { version = "0.4.0", features = ["cors"] }
tracing = "^0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["json"] }
url = { version = "2.3.1", features = ["serde"] }
uuid = { version = "^1.3.2", features = ["v4"] }
[dev-dependencies]
tracing-test = "0.2.4"