update Cargo.toml info for ircd and tau

This commit is contained in:
ghassmo
2022-07-11 16:46:19 +03:00
parent f98063fa73
commit 3a8a66bdff
3 changed files with 22 additions and 11 deletions

View File

@@ -1,12 +1,14 @@
[package]
name = "ircd"
version = "0.3.0"
homepage = "https://dark.fi"
description = "P2P IRC daemon"
authors = ["darkfi <dev@dark.fi>"]
repository = "https://github.com/darkrenaissance/darkfi"
license = "AGPL-3.0-only"
version = "0.3.0"
edition = "2021"
authors = ["darkfi <dev@dark.fi>"]
license = "AGPL-3.0-only"
homepage = "https://dark.fi"
repository = "https://github.com/darkrenaissance/darkfi"
keywords = []
categories = []
[dependencies]
darkfi = {path = "../../", features = ["net", "rpc"]}
@@ -32,7 +34,7 @@ simplelog = "0.12.0"
fxhash = "0.2.1"
ctrlc-async = {version= "3.2.2", default-features = false, features = ["async-std", "termination"]}
url = "2.2.2"
ringbuffer = "0.8.4"
ringbuffer = "0.8.4"
# Encoding and parsing
serde_json = "1.0.82"

View File

@@ -1,12 +1,14 @@
[package]
name = "tau"
version = "0.3.0"
homepage = "https://dark.fi"
description = "Command-line client for taud"
authors = ["darkfi <dev@dark.fi>"]
repository = "https://github.com/darkrenaissance/darkfi"
license = "AGPL-3.0-only"
version = "0.3.0"
edition = "2021"
authors = ["darkfi <dev@dark.fi>"]
license = "AGPL-3.0-only"
homepage = "https://dark.fi"
repository = "https://github.com/darkrenaissance/darkfi"
keywords = []
categories = ["command-line-utilities"]
[dependencies]
async-std = {version = "1.12.0", features = ["attributes"]}

View File

@@ -1,7 +1,14 @@
[package]
name = "taud"
description = "Encrypted tasks management app using peer-to-peer network and raft consensus."
version = "0.3.0"
edition = "2021"
authors = ["darkfi <dev@dark.fi>"]
license = "AGPL-3.0-only"
homepage = "https://dark.fi"
repository = "https://github.com/darkrenaissance/darkfi"
keywords = []
categories = []
[dependencies]
darkfi = { path = "../../../", features = ["rpc", "raft", "net"]}