1
0
Fork 0

Add unix example

This commit is contained in:
Florian RICHER 2023-01-24 08:58:52 +01:00
parent 49bab13f6e
commit b94c621ab1
No known key found for this signature in database
GPG key ID: 6BF27BF8A1E71623
9 changed files with 125 additions and 0 deletions

17
Cargo.toml Normal file
View 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"