[package] name = "ipfs-cid" description = """ Generate IPFS CIDs (Content Identifiers) from a slice of bytes. """ keywords = ["ipfs", "cid", "content", "identifier", "hash"] authors = ["Abid Omar "] exclude = ["tests/*", "examples/*", "data/*"] version = "2.0.0" edition = "2021" license = "MIT" homepage = "https://github.com/omarabid/ipfs-cid" repository = "https://github.com/omarabid/ipfs-cid" readme = "README.md" rust-version = "1.70.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] cid = { version = "0.10.1" } thiserror = "1.0.41" ipfs-unixfs = "0.2.0" bs58 = "0.5.0" num-bigint = "0.4.4" multibase = "0.9.1"