-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (42 loc) · 1.08 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
[package]
name = "proton"
description = "⚡️ Blazingly fast neural network prediction service"
repository = "https://github.com/martinabeleda/proton"
readme = "README.md"
version = "0.1.0"
edition = "2021"
default-run = "proton"
authors = ["Martin Abeleda <[email protected]>"]
license-file = "LICENSE"
[dependencies]
axum = "0.6.20"
tokio = { version = "1.33.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "^0.9.25"
onnxruntime = "^0.0.14"
futures = "0.3.28"
axum-macros = "0.3.8"
lazy_static = "1.4"
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
ndarray = { version = "0.15.1", features = ["serde"] }
reqwest = { version = "0.11.18", features = ["json"] }
uuid = { version = "1.4.1", features = ["v4", "serde"]}
clap = "4.3.10"
rand = "0.8.5"
axum-prometheus = "0.4.0"
prost = "0.11.9"
tonic = "0.9.2"
hyper = "0.14.27"
[build-dependencies]
tonic-build = "0.9.2"
[[bin]]
name = "client"
path = "src/bin/client.rs"
[[bin]]
name = "grpc-client"
path = "src/bin/grpc_client.rs"
[[bin]]
name = "onnx"
path = "src/bin/onnx.rs"