mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-04-28 03:00:18 -04:00
32 lines
510 B
TOML
32 lines
510 B
TOML
[package]
|
|
name = "map"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
|
|
[dependencies.darkfi]
|
|
path = "../../"
|
|
features = ["rpc"]
|
|
|
|
[dependencies]
|
|
# Tui
|
|
termion = "1.5.6"
|
|
tui = "0.16.0"
|
|
|
|
# Async
|
|
smol = "1.2.4"
|
|
async-std = {version = "1.10.0", features = ["attributes"]}
|
|
easy-parallel = "3.2.0"
|
|
async-channel = "1.6.1"
|
|
|
|
# Misc
|
|
clap = "3.0.7"
|
|
rand = "0.6.5"
|
|
simplelog = "0.11.2"
|
|
log = "0.4.14"
|
|
num_cpus = "1.13.1"
|
|
url = "2.2.2"
|
|
|
|
# Encoding and parsing
|
|
serde_json = "1.0.74"
|
|
serde = {version = "1.0.133", features = ["derive"]}
|