Add unix example
This commit is contained in:
parent
49bab13f6e
commit
b94c621ab1
9 changed files with 125 additions and 0 deletions
17
Cargo.toml
Normal file
17
Cargo.toml
Normal file
|
@ -0,0 +1,17 @@
|
|||
[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
|
||||
|
||||
[[bin]]
|
||||
name = "daemon"
|
||||
path = "src/daemon/bin/main.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "client"
|
||||
path = "src/client/bin/main.rs"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "^1.0.42"
|
Reference in a new issue