-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
58 lines (55 loc) · 1.66 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
54
55
56
57
58
[package]
name = "indexer-service"
version = "0.1.0"
edition = "2021"
[dependencies]
async-std = { version = "1.5", features = ["attributes"] }
aws-config = "0.56.1"
aws-sdk-s3 = "0.30.0"
aws-sdk-sqs = "0.30.0"
axum = { version = "0.6", features = ["macros", "multipart", "tokio"] }
axum-macros = "0.3"
chrono = { version = "0.4.26", features = ["serde"] }
deadpool-diesel = { version = "0.4", features = ["postgres"] }
diesel = { version = "2.1.0", features = ["postgres", "uuid", "serde_json"] }
# tls support did not work at 0.4.1 but only on the latest rev
arc-swap = "1.6.0"
diesel-async = { git = "https://github.com/weiznich/diesel_async", rev = "1e18b3749d36918cf35104fd883efaba8540670b", features = [
"postgres",
"deadpool",
"async-connection-wrapper",
] }
diesel_migrations = "2"
dotenvy = "0.15"
futures-util = "0.3.21"
hyper = { version = "0.14", features = ["full"] }
mime = "0.3"
prost = "0.12.3"
rstest = "0.18.2"
rustls = "0.20.8"
rustls-native-certs = "0.6.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
shutil = "0.1.2"
sqs_worker = "0.1.3"
strum = "0.25"
strum_macros = "0.25"
thiserror = "1.0.49"
tokio = { version = "1.0", features = [
"sync",
"macros",
"rt-multi-thread",
"process",
"full",
] }
tokio-postgres = "0.7.7"
tokio-postgres-rustls = "0.9.0"
tonic = "0.10.2"
tower-http = { version = "0.4.0", features = ["trace", "cors"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.4", features = ["fast-rng", "v4", "serde"] }
value-bag = "1.4.1"
[dev-dependencies]
tower = { version = "0.4", features = ["util"] }
mpart-async = { version = "0.6.1", features = ["tokio"] }