mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-09 14:48:08 -05:00
73 lines
1.5 KiB
TOML
73 lines
1.5 KiB
TOML
[package]
|
|
name = "evgrd"
|
|
description = "Event graph daemon"
|
|
version = "0.5.1"
|
|
edition = "2021"
|
|
authors = ["Dyne.org foundation <foundation@dyne.org>"]
|
|
license = "AGPL-3.0-only"
|
|
homepage = "https://dark.fi"
|
|
repository = "https://codeberg.org/darkrenaissance/darkfi"
|
|
|
|
[[bin]]
|
|
name = "evgrd"
|
|
path = "bin/evgrd.rs"
|
|
required-features = ["build-daemon"]
|
|
|
|
[[example]]
|
|
name = "recv"
|
|
path = "example/recv.rs"
|
|
|
|
[[example]]
|
|
name = "send"
|
|
path = "example/send.rs"
|
|
|
|
[dependencies]
|
|
darkfi = {path = "../../", features = ["event-graph"]}
|
|
darkfi-serial = {version = "0.5.0", features = ["async"]}
|
|
|
|
# Event Graph DB
|
|
sled-overlay = "0.1.10"
|
|
|
|
# Crypto
|
|
blake3 = "1.8.2"
|
|
|
|
# Misc
|
|
log = "0.4.27"
|
|
url = "2.5.4"
|
|
|
|
# Daemon
|
|
smol = "2.0.2"
|
|
|
|
# evgrd deps
|
|
async-trait = {version = "0.1.88", optional = true}
|
|
futures = {version = "0.3.31", optional = true}
|
|
semver = {version = "1.0.26", optional = true}
|
|
easy-parallel = {version = "3.3.1", optional = true}
|
|
signal-hook-async-std = {version = "0.3.0", optional = true}
|
|
signal-hook = {version = "0.3.18", optional = true}
|
|
simplelog = {version = "0.12.2", optional = true}
|
|
serde = {version = "1.0.219", features = ["derive"], optional = true}
|
|
structopt = {version = "0.3.26", optional = true}
|
|
structopt-toml = {version = "0.5.1", optional = true}
|
|
|
|
[features]
|
|
build-daemon = [
|
|
"darkfi/async-daemonize",
|
|
"async-trait",
|
|
"futures",
|
|
"semver",
|
|
"easy-parallel",
|
|
"signal-hook-async-std",
|
|
"signal-hook",
|
|
"simplelog",
|
|
"serde",
|
|
"structopt",
|
|
"structopt-toml",
|
|
]
|
|
|
|
#[lints]
|
|
#workspace = true
|
|
|
|
# Temp stuff
|
|
[workspace]
|