Просмотр исходного кода

update Cargo.toml info for ircd and tau

ghassmo 4 лет назад
Родитель
Сommit
3a8a66bdff
3 измененных файлов с 20 добавлено и 9 удалено
  1. 7 5
      bin/ircd/Cargo.toml
  2. 6 4
      bin/tau/tau-cli/Cargo.toml
  3. 7 0
      bin/tau/taud/Cargo.toml

+ 7 - 5
bin/ircd/Cargo.toml

@@ -1,12 +1,14 @@
 [package]
 name = "ircd"
-version = "0.3.0"
-homepage = "https://dark.fi"
 description = "P2P IRC daemon"
+version = "0.3.0"
+edition = "2021"
 authors = ["darkfi <dev@dark.fi>"]
-repository = "https://github.com/darkrenaissance/darkfi"
 license = "AGPL-3.0-only"
-edition = "2021"
+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"

+ 6 - 4
bin/tau/tau-cli/Cargo.toml

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

+ 7 - 0
bin/tau/taud/Cargo.toml

@@ -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"]}