-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
43 lines (40 loc) · 964 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
[package]
name = "constellation-processors"
version = "1.1.0"
edition = "2021"
[dependencies]
star-constellation = "0.2.3"
sta-rs = "0.3.0"
actix-web = "4"
env_logger = "0.11"
log = "0.4"
tokio = { version = "1.37", features = ["full"] }
futures = "0.3"
futures-core = "0.3"
dotenvy = "0.15"
derive_more = "0.99"
hex = "0.4"
rand = "0.8"
clap = { version = "4.5", features = ["derive"] }
base64 = "0.21"
bincode = "1.3"
serde = "1.0"
serde_json = "1.0"
async-trait = "0.1"
rdkafka = { version = "0.36", features = ["ssl"] }
diesel = { version = "2.1", features = ["postgres", "r2d2"] }
diesel_migrations = "2.1"
r2d2 = "0.8"
calendar-duration = "1.0"
time = { version = "0.3", features = ["parsing", "serde"] }
tokio-util = "0.7"
reqwest = { version = "0.11", features = ["json"] }
rusoto_core = "0.48"
rusoto_s3 = "0.48"
rusoto_credential = "0.48"
rusoto_sts = "0.48"
prometheus-client = "0.22"
sentry = "0.34"
jemallocator = "0.5"
[profile.dev]
opt-level = 3