-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (45 loc) · 1.4 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
[package]
name = "scouter-server"
version = "0.1.8"
edition = "2021"
authors = [
"Steven Forrester <[email protected]>"
]
license = "MIT"
description = "Scouter server for model monitoring"
[dependencies]
anyhow = "1.0.86"
axum = "0.7.5"
chrono = { version = "0.4.24", features = ["serde"] }
include_dir = "0.7.3"
scouter = { version = "0.*", features = ["dispatch"] }
serde = { version = "1.0.159", features = ["derive"] }
serde_json = "1.0.95"
sqlx = { version = "0.7.3", features = ["runtime-async-std-native-tls", "postgres", "chrono", "uuid"] }
time = "0.3.36"
tokio = { version = "1.27.0", features = ["full"] }
tower-http = { version = "0.5.0", features = ["cors"] }
tracing = "0.1.40"
tracing-subscriber = {version = "0.3.18", features = ["json", "time"]}
cron = "0.12.1"
ndarray = "0.15.6"
metrics-exporter-prometheus = "0.15.1"
metrics = "0.23.0"
async-trait = "0.1.81"
colored = "2.1.0"
futures = "0.3.30"
# Kafka dependencies
rdkafka = { version = "0.36.2", optional = true, features = ["cmake-build", "ssl"] }
# RabbitMQ dependencies
lapin = { version = "2.5.0", optional = true }
[features]
default = []
kafka = ["rdkafka"]
rabbitmq = ["lapin"]
[dev-dependencies]
approx = "0.5.1"
http-body-util = "0.1.2"
ndarray-rand = "0.14.0"
mockito = "1.4.0"
sqlx-cli = { version = "0.7.4", default-features = false, features = ["native-tls", "postgres"] }
tower = { version = "0.4.13", features = ["util"] }