bellande_mesh_sync/Cargo.toml
2024-10-24 03:25:54 -04:00

27 lines
1.0 KiB
TOML

[package]
name = "bellande_mesh_sync"
version = "0.0.1"
edition = "2021"
authors = ["Ronaldson Bellande <ronaldsonbellande@gmail.com>"]
description = "Advanced peer-to-peer data synchronization system for distributed applications"
license = "GPL-3.0-or-later"
repository = "https://github.com/Architecture-Mechanism/bellande_mesh_sync"
documentation = "https://bellande-architecture-mechanism-research-innovation-center.org/bellande_mesh_sync/docs"
readme = "README.md"
keywords = ["p2p", "synchronization", "distributed-systems", "mesh-network", "bellande_mesh_sync"]
categories = ["network-programming", "asynchronous"]
[lib]
path = "src/bellande_mesh_sync.rs"
[dependencies]
tokio = { version = "1.28", features = ["rt", "net", "time", "sync", "macros"] }
hyper-rustls = { version = "0.24", features = ["http1", "http2"] }
serde = { version = "1.0", features = ["derive"] }
hyper = { version = "0.14", features = ["full"] }
futures = "0.3"
serde_json = "1.0"
bincode = "1.3"
rand = "0.8"
uuid = { version = "1.3", features = ["v4", "serde"] }