forked from tiiuae/ghaf-givc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (39 loc) · 1.05 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
[workspace]
members = [
"client",
"common",
"."
]
[package]
authors = ["Alexander Nikolaev <alexander.nikolaev@unikie.com>"]
edition = "2021"
license = "Apache 2.0"
name = "givc"
publish = false
version = "0.0.1"
[dependencies]
anyhow = "1.0.86"
async-stream = "0.3"
async-channel = "2.3.1"
strum = {version = "0.25", features = ["derive"]}
clap = {version = "4.5.4", features = ["derive", "env"]}
console = "0.15"
http = "0.2"
http-body = "0.4.2"
hyper = "0.14"
prost = "0.12"
tokio = {version = "1.0", features = ["rt-multi-thread", "time", "macros"]}
tokio-stream = "0.1"
tonic = {version="0.11.0", features = ["tls"]}
tonic-types = {version="0.11.0"}
tonic-reflection = {version="0.11.0"}
tower = {version = "0.4"}
tracing = "0.1"
tracing-subscriber = {version = "0.3", features = ["env-filter", "tracing-log", "time", "local-time"]}
tracing-journald = {version =" 0.2.0"}
serde = { version = "1.0.202", features = ["derive"]}
serde_json = "1.0.120"
x509-parser = { version = "0.16" }
# GIVC subparts
givc-common = { path="common" }
givc-client = { path="client" }