1
0
Fork 0
This repository has been archived on 2024-01-05. You can view files and clone it, but cannot push or open issues or pull requests.
command_gateway/Cargo.toml

28 lines
721 B
TOML
Raw Normal View History

2023-01-24 08:58:52 +01:00
[package]
name = "command_gateway"
version = "0.1.0"
edition = "2021"
2023-01-26 22:12:59 +01:00
publish = false
2023-01-24 08:58:52 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2023-01-24 14:17:32 +01:00
[lib]
crate-type = ["cdylib"]
2023-01-24 08:58:52 +01:00
[[bin]]
name = "daemon"
2023-01-24 14:17:32 +01:00
path = "src/daemon/main.rs"
2023-01-24 08:58:52 +01:00
[[bin]]
name = "client"
2023-01-24 14:17:32 +01:00
path = "src/client/main.rs"
2023-01-24 08:58:52 +01:00
[dependencies]
2023-01-26 22:12:59 +01:00
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"] } # Required for tonic
2023-01-26 22:40:09 +01:00
tokio-stream = { version = "0.1", features = ["net"] } # Required for tonic with unix socket
tower = "0.4" # Required for tonic with unix socket
2023-01-26 22:12:59 +01:00
prost = "0.11" # Required for tonic
tonic = "0.8"
[build-dependencies]
tonic-build = { version = "0.8", features = ["prost"] } # Required for tonic