[package] name = "irona" version = "0.0.1" description = "A protocol for decentralized information management" categories = ["cryptography", "network-programming"] keywords = ["IMS", "information", "management", "protocol"] license = "Unlicense" readme = "README.md" authors = ["Christian Nyumbayire"] repository = "https://github.com/irona-tech/irona" edition = "2018" [badges] travis-ci = { repository = "irona-tech/irona", branch = "master" } [lib] name = "libirona" path = "src/lib.rs" [[bin]] name = "irona" path = "src/main.rs" [dependencies] anyhow = "^1" serde = { version = "^1", features = ["derive"] } hex = "^0.4" serde_json = "^1" serde_cbor = "^0.11" byteorder = "^1" typenum = "^1" generic-array = "^0.12" digest = "^0.8" sha2 = "^0.8" subtle = "^2" zeroize = "^1" rand_core = "^0.5" rand = "^0.7" ed25519-dalek = { version = "1.0.0-pre.3", features = ["nightly"] } chrono = "^0.4" toml = "^0.5" async-std = { version = "^1", features = ["unstable", "attributes"] } tide = { version = "^0.6", features = ["unstable"] } # TODO clap = "^2"