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

21 lines
360 B
TOML
Raw Normal View History

2023-01-24 08:58:52 +01:00
[package]
name = "command_gateway"
version = "0.1.0"
edition = "2021"
# 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-24 14:17:32 +01:00
anyhow = "^1.0"
jsonrpc-derive = "18.0"