bellande_mesh_sync/Cargo.toml

29 lines
1.0 KiB
TOML
Raw Permalink Normal View History

2024-10-23 21:18:01 +00:00
[package]
name = "bellande_mesh_sync"
2024-10-30 15:31:31 +00:00
version = "0.0.2"
2024-10-23 21:18:01 +00:00
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"
2024-10-26 01:46:27 +00:00
keywords = ["synchronization", "distributed-systems", "mesh-network", "bellande_mesh_sync"]
2024-10-23 21:18:01 +00:00
categories = ["network-programming", "asynchronous"]
[lib]
path = "src/bellande_mesh_sync.rs"
[dependencies]
2024-10-25 04:10:40 +00:00
tokio = { version = "1.0", features = ["full"] }
2024-10-24 07:25:54 +00:00
hyper-rustls = { version = "0.24", features = ["http1", "http2"] }
2024-10-23 21:18:01 +00:00
serde = { version = "1.0", features = ["derive"] }
2024-10-24 07:25:54 +00:00
hyper = { version = "0.14", features = ["full"] }
2024-10-23 21:18:01 +00:00
serde_json = "1.0"
bincode = "1.3"
rand = "0.8"
2024-10-25 04:10:40 +00:00
rustls = "0.21"
tokio-util = { version = "0.7", features = ["full"] }
async-trait = "0.1"
2024-10-26 01:46:27 +00:00
tokio-rustls = "0.24"