-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
75 lines (68 loc) · 1.69 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[workspace]
members = ["repl", "srs", "stubs", "tts"]
resolver = "2"
[workspace.package]
version = "0.8.1"
license = "AGPL-3.0-or-later"
authors = ["Markus Ast <[email protected]>"]
rust-version = "1.78"
edition = "2021"
[workspace.dependencies]
base64 = "0.22"
bytes = "1.6"
futures-util = { version = "0.3", features = ["sink"] }
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
tokio = { version = "1.37", features = [
"rt-multi-thread",
"io-util",
"net",
"sync",
"time",
"parking_lot",
"macros",
] }
tokio-stream = { version = "0.1", features = ["sync"] }
tonic = "0.11"
[package]
name = "dcs-grpc"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
edition.workspace = true
[lib]
crate-type = ["cdylib"]
[dependencies]
backoff = { version = "0.4", features = ["tokio"] }
dcs-module-ipc = "0.8"
futures-util.workspace = true
igrf = "0.2"
libloading = { version = "0.8", optional = true }
log4rs = "1.0"
log.workspace = true
mlua = { version = "0.9", default-features = false, features = [
"lua51",
"module",
"serialize",
] }
once_cell = "1.4.0"
pin-project = "1.0"
serde.workspace = true
serde_json.workspace = true
srs = { package = "dcs-grpc-srs", path = "./srs" }
stubs = { package = "dcs-grpc-stubs", path = "./stubs", features = ["server"] }
thiserror.workspace = true
tts = { package = "dcs-grpc-tts", path = "./tts" }
time = { version = "0.3", features = ["formatting", "parsing"] }
tokio.workspace = true
tokio-stream.workspace = true
tonic.workspace = true
tonic-middleware = "0.1.4"
[build-dependencies]
walkdir = "2.3"
[features]
default = []
hot-reload = ["libloading"]