-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
43 lines (42 loc) · 1.02 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
[package]
name = "relay-backend"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.66"
async-trait = "0.1"
axum = "0.6"
chrono = { version = "0.4", features = ["serde"] }
enum-iterator = "1.3.0"
envy = "0.4.2"
flate2 = "1.0.25"
futures = "0.3.25"
gcp-bigquery-client = { git = "https://github.com/blombern/gcp-bigquery-client.git" }
hex = "0.4.3"
indoc = "2.0.4"
itertools = "0.10.5"
lazy_static = "1"
rand = "0.8.5"
redis = { version = "0.22.1", features = ["aio", "tokio-comp"] }
reqwest = { version = "0.11", features = ["json", "gzip"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_with = "3.5.1"
sqlx = { version = "0.8.0", features = [
"chrono",
"postgres",
"runtime-tokio-native-tls",
"bigdecimal",
] }
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1.12"
tower = "0.4"
tower-http = { version = "0.3.4", features = ["cors"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"env-filter",
"fmt",
"json",
"std",
] }
trait-variant = "0.1.2"