|
@@ -1,20 +1,24 @@
|
|
|
[package]
|
|
[package]
|
|
|
name = "fu"
|
|
name = "fu"
|
|
|
-version = "0.3.0"
|
|
|
|
|
-homepage = "https://dark.fi"
|
|
|
|
|
description = "Command-line client for fud"
|
|
description = "Command-line client for fud"
|
|
|
|
|
+version = "0.3.0"
|
|
|
|
|
+edition = "2021"
|
|
|
authors = ["darkfi <dev@dark.fi>"]
|
|
authors = ["darkfi <dev@dark.fi>"]
|
|
|
-repository = "https://github.com/darkrenaissance/darkfi"
|
|
|
|
|
license = "AGPL-3.0-only"
|
|
license = "AGPL-3.0-only"
|
|
|
-edition = "2021"
|
|
|
|
|
|
|
+homepage = "https://dark.fi"
|
|
|
|
|
+repository = "https://github.com/darkrenaissance/darkfi"
|
|
|
|
|
+keywords = []
|
|
|
|
|
+categories = []
|
|
|
|
|
|
|
|
[dependencies]
|
|
[dependencies]
|
|
|
|
|
+darkfi = {path = "../../../", features = ["util", "rpc"]}
|
|
|
|
|
+
|
|
|
|
|
+# Async
|
|
|
async-std = {version = "1.12.0", features = ["attributes"]}
|
|
async-std = {version = "1.12.0", features = ["attributes"]}
|
|
|
|
|
+
|
|
|
|
|
+# Misc
|
|
|
clap = {version = "3.2.20", features = ["derive"]}
|
|
clap = {version = "3.2.20", features = ["derive"]}
|
|
|
-darkfi = {path = "../../../../", features = ["util", "rpc"]}
|
|
|
|
|
log = "0.4.17"
|
|
log = "0.4.17"
|
|
|
serde_json = "1.0.85"
|
|
serde_json = "1.0.85"
|
|
|
simplelog = "0.12.0"
|
|
simplelog = "0.12.0"
|
|
|
url = "2.3.1"
|
|
url = "2.3.1"
|
|
|
-
|
|
|
|
|
-[workspace]
|
|
|