mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-08 22:28:12 -05:00
This commit relocates the explorer code from the research directory to `bin/explorer` to include it as part of future releases. ### Summary of Updates: #### Darkfi Project - Updated `Cargo.toml` to include `bin/explorer/explorerd` as a workspace member - Updated `Cargo.lock` to include the `explorerd` package - Updated the `Makefile` to include `explorerd` in the build process #### Explorer Daemon - Renamed the project directory from `blockchain-explorer` to `explorer` - Moved the explorer daemon source code to `bin/explorer/explorerd` - Updated the cargo package name to `explorerd` - Updated log statement targets from `blockchain-explorer::` to `explorerd::` - Renamed the explorer configuration file to `explorerd_config.toml` - Removed Halo2 patches as they are now included in the root package - Changed default db_path to use explorerd instead of blockchain-explorer in the path - Changed binary crate Arg structopt name from blockchain-explorer to explorerd #### Explorer Site - Moved the explorer site source code to `bin/explorer/site` - Updated README.md to include new build instructions for explorerd
44 lines
966 B
TOML
44 lines
966 B
TOML
[package]
|
|
name = "explorerd"
|
|
version = "0.4.1"
|
|
description = "Daemon to listen for new blocks from darkfid and store them in an easily accessible format for further usage."
|
|
authors = ["Dyne.org foundation <foundation@dyne.org>"]
|
|
repository = "https://codeberg.org/darkrenaissance/darkfi"
|
|
license = "AGPL-3.0-only"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
# Darkfi
|
|
darkfi = {path = "../../../", features = ["async-daemonize", "validator"]}
|
|
darkfi-sdk = {path = "../../../src/sdk"}
|
|
darkfi-serial = "0.4.2"
|
|
drk = {path = "../../../bin/drk"}
|
|
|
|
# JSON-RPC
|
|
async-trait = "0.1.86"
|
|
tinyjson = "2.5.1"
|
|
url = "2.5.4"
|
|
|
|
# Daemon
|
|
easy-parallel = "3.3.1"
|
|
signal-hook-async-std = "0.2.2"
|
|
signal-hook = "0.3.17"
|
|
simplelog = "0.12.2"
|
|
smol = "2.0.2"
|
|
|
|
# Argument parsing
|
|
serde = {version = "1.0.217", features = ["derive"]}
|
|
structopt = "0.3.26"
|
|
structopt-toml = "0.5.1"
|
|
|
|
# Database
|
|
sled-overlay = "0.1.6"
|
|
|
|
# Misc
|
|
log = "0.4.25"
|
|
lazy_static = "1.5.0"
|
|
tar = "0.4.43"
|
|
|
|
# Testing
|
|
tempdir = "0.3.7"
|