mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-04-28 03:00:18 -04:00
34 lines
829 B
TOML
34 lines
829 B
TOML
[package]
|
|
name = "dchat"
|
|
version = "0.4.2"
|
|
homepage = "https://dark.fi"
|
|
description = "Demo chat app used to document DarkFi networking code"
|
|
authors = ["Dyne.org foundation <foundation@dyne.org>"]
|
|
repository = "https://github.com/darkrenaissance/darkfi"
|
|
license = "AGPL-3.0-only"
|
|
edition = "2021"
|
|
|
|
# ANCHOR: darkfi
|
|
[dependencies]
|
|
darkfi = {path = "../../", features = ["net", "toml", "system", "async-daemonize", "rpc"]}
|
|
darkfi-serial = {path = "../../src/serial"}
|
|
# ANCHOR_END: darkfi
|
|
|
|
# ANCHOR: dependencies
|
|
async-trait = "0.1.74"
|
|
log = "0.4.20"
|
|
url = "2.5.0"
|
|
|
|
# Daemon
|
|
easy-parallel = "3.3.1"
|
|
signal-hook-async-std = "0.2.2"
|
|
signal-hook = "0.3.17"
|
|
simplelog = "0.12.1"
|
|
smol = "1.3.0"
|
|
|
|
# Arg parsing
|
|
serde = {version = "1.0.193", features = ["derive"]}
|
|
structopt = "0.3.26"
|
|
structopt-toml = "0.5.1"
|
|
# ANCHOR_END: dependencies
|