Cargo.toml
1 [package] 2 name = "alphaos-node-sync-locators" 3 version = "0.3.0" 4 authors = [ "The Alpha Team <hello@alpha.org>" ] 5 description = "Locators to synchronize a decentralized operating system" 6 homepage = "https://alpha.org" 7 repository = "https://github.com/ProvableHQ/alphaos" 8 keywords = [ 9 "alpha", 10 "cryptography", 11 "blockchain", 12 "decentralized", 13 "zero-knowledge" 14 ] 15 categories = [ "cryptography", "cryptography::cryptocurrencies", "os" ] 16 license = "Apache-2.0" 17 edition = "2021" 18 19 [features] 20 default = [ ] 21 test = [ ] 22 23 [dependencies.anyhow] 24 workspace = true 25 26 [dependencies.indexmap] 27 workspace = true 28 features = [ "serde", "rayon" ] 29 30 [dependencies.serde] 31 workspace = true 32 33 [dependencies.alphavm] 34 workspace = true 35 features = [ "console" ] 36 37 [dependencies.tracing] 38 workspace = true