generated from DimensionDev/aws_lambda_rust_template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
53 lines (45 loc) · 1.13 KB
/
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
47
48
49
50
51
52
53
[package]
name = "kv_server"
version = "0.1.0"
edition = "2021"
autobins = false
authors = ["Nyk Ma <[email protected]>"]
description = "KV storage for each entity of proof_server in NextID ecosystem"
readme = "README.org"
repository = "https://github.com/nextdotid/kv_server"
publish = false
[[bin]]
name = "bootstrap"
path = "examples/lambda.rs"
[dependencies]
config = "0.12"
lazy_static = "1.4"
log = "0.4"
env_logger = "0.9"
thiserror = "1.0"
http = "0.2.6"
url = "2.2"
lambda_runtime = "0.5.0"
lambda_http = "0.5.0"
hyper = { version = "0.14.17", features = ["full"] }
hyper-tls = "*"
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
json-patch = "*"
# diesel `uuidv07` feature is bound tight with `uuid` v0.7.x
diesel = { version = "2.0", features = ["postgres", "uuid", "r2d2", "serde_json", "chrono"] }
diesel_migrations = "*"
uuid = { version = "1.3", features = ["serde", "v4"] }
chrono = "0.4"
# crypto
rand = "0.8"
libsecp256k1 = "0.7"
sha3 = "0.10" # Keccak256
base64 = "0.13"
hex = "0.4"
hex-literal = "0.3"
# arweave
arweave-rs = "0.1.2"
[dev_dependencies]
fake = "2.4"