forked from DCS-gRPC/rust-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (35 loc) · 969 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
34
35
36
37
38
39
[package]
name = "dcs-grpc"
version = "0.3.0"
authors = ["Markus Ast <[email protected]>"]
license = "AGPL-3.0-or-later"
edition = "2021"
rust-version = "1.56"
[workspace]
members = [
"repl",
"stubs",
]
[lib]
crate-type = ["cdylib"]
[dependencies]
dcs-module-ipc = "0.6"
futures-util = "0.3"
igrf = "0.2"
libloading = { version = "0.7", optional = true }
log4rs = "1.0"
log = "0.4"
mlua = { version = "0.7", default-features = false, features = ["lua51", "module", "serialize"] }
once_cell = "1.4.0"
pin-project = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
stubs = { package = "dcs-grpc-stubs", version = "0.1", path = "./stubs", features = ["server"] }
thiserror = "1.0"
time = { version = "0.3", features = ["formatting", "parsing"] }
tokio = { version = "1.0", features = ["rt-multi-thread", "time", "sync"] }
tokio-stream = { version = "0.1", features = ["sync"] }
tonic = "0.6"
[features]
default = []
hot-reload = ["libloading"]