Cargo.toml
1 [package] 2 name = "fu" 3 description = "Command-line client for fud" 4 version = "0.5.0" 5 edition = "2021" 6 authors = ["Dyne.org foundation <foundation@dyne.org>"] 7 license = "AGPL-3.0-only" 8 homepage = "https://dark.fi" 9 repository = "https://codeberg.org/darkrenaissance/darkfi" 10 11 [dependencies] 12 darkfi = {path = "../../../", features = ["util", "rpc"]} 13 fud = {path = "../fud/"} 14 15 # Async 16 smol = "2.0.2" 17 18 # Misc 19 clap = {version = "4.4.11", features = ["derive"]} 20 tracing = "0.1.41" 21 tracing-subscriber = { version = "0.3.19", default-features = false, features = ["fmt"] } 22 url = "2.5.4" 23 termcolor = "1.4.1" 24 25 [lints] 26 workspace = true