aranya-daemon

Crates.ioaranya-daemon
lib.rsaranya-daemon
version0.2.0
sourcesrc
created_at2024-10-16 21:47:07.679565
updated_at2024-11-12 19:33:53.589283
descriptionDaemon process for syncing with Aranya peers and maintaining the DAG
homepage
repositoryhttps://github.com/aranya-project/aranya
max_upload_size
id1412384
size206,261
(aranya-project-bot)

documentation

README

Aranya Daemon

Crates.io License

Overview

The Aranya Daemon is a long-running executable that is used to maintain the state of Aranya after adding commands to the graph or syncing commands from other peers by interacting directly with the Aranya Core library. See here for details on the Aranya functionality available through the daemon.

The daemon's responsibilities include:

  • Periodically syncing state between networked Aranya peers to ensure they all have consistent state. This includes the ability to add and remove sync peers, available to your application through the Rust Client library.
  • Invokes actions received from the client and handles effects from the Aranya Core library. See the walkthrough for more details.
  • Generates and maintains cryptographic keys for encrypting and decrypting data for Aranya and Fast Channels

Note: The Aranya Daemon supports a single user. As such, device and user may be used interchangeably throughout the code base.

Configuration

Create a config file for the daemon before running it. Refer to this documentation on the JSON config file parameters: config.

An example daemon configuration file can be found here.

Running the daemon

Build and run the daemon crate:

$ cargo build --bin daemon --release
$ ./target/release/daemon <path to config>
Commit count: 39

cargo fmt