mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-09 22:57:59 -05:00
- replace log crate with tracing, - replace simple-log crate with tracing-subscriber and tracing-appender - add nu-ansi-term crate as a dependency which is itself tracing-subscriber's dependency, inorder to write colored outputs to the terminal since we override formatting provided by tracing-subscriber
27 lines
622 B
TOML
27 lines
622 B
TOML
[package]
|
|
name = "fu"
|
|
description = "Command-line client for fud"
|
|
version = "0.5.0"
|
|
edition = "2021"
|
|
authors = ["Dyne.org foundation <foundation@dyne.org>"]
|
|
license = "AGPL-3.0-only"
|
|
homepage = "https://dark.fi"
|
|
repository = "https://codeberg.org/darkrenaissance/darkfi"
|
|
|
|
[dependencies]
|
|
darkfi = {path = "../../../", features = ["util", "rpc"]}
|
|
fud = {path = "../fud/"}
|
|
|
|
# Async
|
|
smol = "2.0.2"
|
|
|
|
# Misc
|
|
clap = {version = "4.4.11", features = ["derive"]}
|
|
tracing = "0.1.41"
|
|
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["fmt"] }
|
|
url = "2.5.4"
|
|
termcolor = "1.4.1"
|
|
|
|
[lints]
|
|
workspace = true
|