mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-09 14:48:08 -05:00
43 lines
772 B
TOML
43 lines
772 B
TOML
[package]
|
|
name = "darkwiki"
|
|
description = ""
|
|
version = "0.4.0"
|
|
edition = "2021"
|
|
authors = ["darkfi <dev@dark.fi>"]
|
|
license = "AGPL-3.0-only"
|
|
homepage = "https://dark.fi"
|
|
repository = "https://github.com/darkrenaissance/darkfi"
|
|
keywords = []
|
|
categories = []
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
darkfi = {path = "../../../", features = ["rpc"]}
|
|
|
|
|
|
# Async
|
|
smol = "1.2.5"
|
|
async-std = {version = "1.12.0", features = ["attributes"]}
|
|
async-trait = "0.1.57"
|
|
async-channel = "1.7.1"
|
|
futures = "0.3.24"
|
|
|
|
# Misc
|
|
log = "0.4.17"
|
|
simplelog = "0.12.0"
|
|
rand = "0.8.5"
|
|
url = "2.2.2"
|
|
|
|
# Encoding and parsing
|
|
serde = {version = "1.0.144", features = ["derive"]}
|
|
serde_json = "1.0.85"
|
|
structopt = "0.3.26"
|
|
|
|
|
|
|
|
|
|
|