/ abzu-token / Cargo.toml
Cargo.toml
1 [package] 2 name = "abzu-token" 3 version = "0.1.0" 4 edition = "2021" 5 description = "ABZU mesh service credits — utility token for compute, storage, and privacy" 6 license = "AGPL-3.0" 7 repository = "https://github.com/AntisocialStudios/abzu" 8 keywords = ["token", "mesh", "utility", "p2p"] 9 categories = ["cryptography"] 10 11 [lib] 12 path = "src/lib.rs" 13 14 [dependencies] 15 # Serialization 16 serde = { version = "1", features = ["derive"] } 17 serde_json = "1" 18 19 # Error handling 20 thiserror = "1" 21 22 # Time 23 chrono = { version = "0.4", features = ["serde"] } 24 25 # Identity (for addresses) 26 ed25519-dalek = { version = "2", features = ["rand_core", "serde"] } 27 blake3 = "1" 28 hex = "0.4" 29 sled = "0.34" 30 31 [dev-dependencies] 32 tempfile = "3" 33 rand = "0.8"