-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (32 loc) · 833 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
[package]
name = "nxzr_server"
version = { workspace = true }
description = "NXZR Project: Server daemon application"
readme = "README.md"
authors = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
edition = "2021"
publish = false
[dependencies]
anyhow = "1.0.71"
thiserror = "1.0.40"
tokio = { version = "1.28.2", features = [
"rt",
"rt-multi-thread",
"sync",
"time",
"macros",
"signal",
] }
tokio-stream = "0.1.14"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["json"] }
tonic = "0.9.2"
prost = "0.11.9"
prost-types = "0.11.9"
clap = { version = "4.3.4", features = ["derive"] }
nxzr_core = { path = "../nxzr_core" }
nxzr_shared = { path = "../nxzr_shared" }
nxzr_device = { path = "../nxzr_device" }
nxzr_proto = { path = "../nxzr_proto" }