/ node / sync / communication-service / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "alphaos-node-sync-communication-service"
 3  version = "0.1.0"
 4  authors = [ "The Aleo Team <hello@aleo.org>" ]
 5  description = "A communication service for the sync module in a decentralized operating system"
 6  homepage = "https://aleo.org"
 7  repository = "https://github.com/ProvableHQ/snarkOS"
 8  keywords = [
 9    "aleo",
10    "cryptography",
11    "blockchain",
12    "decentralized",
13    "zero-knowledge"
14  ]
15  categories = [ "cryptography", "cryptography::cryptocurrencies", "os" ]
16  license = "Apache-2.0"
17  edition = "2024"
18  
19  [dependencies.async-trait]
20  version = "0.1"
21  
22  [dependencies.tokio]
23  workspace = true
24  features = [ "sync" ]
25  
26  [features]
27  default = [ ]
28  test-helpers = [ ]