move src/bin/ircd.rs to new subcrate in bin/ircd/

This commit is contained in:
narodnik
2021-12-25 10:46:53 +01:00
parent 90d859e424
commit 6081f12b71
2 changed files with 16 additions and 0 deletions

16
bin/ircd/Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
name = "ircd"
version = "0.1.0"
edition = "2021"
[dependencies]
darkfi = { path = "../../" }
clap = "2.34.0"
smol = "1.2.5"
simplelog = "0.11.1"
async-std = "1.10.0"
async-executor = "1.4.1"
async-channel = "1.6.1"
futures = "0.3.17"
log = "0.4.14"