Dastan-glitch 3 лет назад
Родитель
Сommit
9a2ed787b4
2 измененных файлов с 14 добавлено и 8 удалено
  1. 3 3
      Cargo.lock
  2. 11 5
      bin/tau/tau-cli/Cargo.toml

+ 3 - 3
Cargo.lock

@@ -4326,7 +4326,7 @@ dependencies = [
  "serde_json",
  "serde_json",
  "simplelog",
  "simplelog",
  "term_grid",
  "term_grid",
- "textwrap 0.15.2",
+ "textwrap 0.16.0",
  "url",
  "url",
 ]
 ]
 
 
@@ -4436,9 +4436,9 @@ dependencies = [
 
 
 [[package]]
 [[package]]
 name = "textwrap"
 name = "textwrap"
-version = "0.15.2"
+version = "0.16.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b7b3e525a49ec206798b40326a44121291b530c963cfb01018f63e135bac543d"
+checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d"
 dependencies = [
 dependencies = [
  "smawk",
  "smawk",
  "unicode-linebreak",
  "unicode-linebreak",

+ 11 - 5
bin/tau/tau-cli/Cargo.toml

@@ -9,16 +9,22 @@ homepage = "https://dark.fi"
 repository = "https://github.com/darkrenaissance/darkfi"
 repository = "https://github.com/darkrenaissance/darkfi"
 
 
 [dependencies]
 [dependencies]
+darkfi = { path = "../../../", features = ["rpc"]}
+
+# Async
 async-std = {version = "1.12.0", features = ["attributes"]}
 async-std = {version = "1.12.0", features = ["attributes"]}
+
+# Misc
 chrono = "0.4.24"
 chrono = "0.4.24"
-clap = {version = "4.2.7", features = ["derive"]}
 colored = "2.0.0"
 colored = "2.0.0"
-darkfi = { path = "../../../", features = ["rpc"]}
 log = "0.4.17"
 log = "0.4.17"
 prettytable-rs = "0.10.0"
 prettytable-rs = "0.10.0"
-serde = {version = "1.0.163", features = ["derive"]}
-serde_json = "1.0.96"
 simplelog = "0.12.1"
 simplelog = "0.12.1"
 term_grid = { git = "https://github.com/Dastan-glitch/rust-term-grid.git" }
 term_grid = { git = "https://github.com/Dastan-glitch/rust-term-grid.git" }
-textwrap = "0.15.2"
+textwrap = "0.16.0"
 url = "2.3.1"
 url = "2.3.1"
+
+# Encoding and parsing
+clap = {version = "4.2.7", features = ["derive"]}
+serde = {version = "1.0.163", features = ["derive"]}
+serde_json = "1.0.96"