[package] name = "sodalite" version = "0.4.0" authors = ["Cody P Schafer "] description = "Tweetnacl in pure rust with no std dependency" license = "Apache-2.0 OR MIT" homepage = "https://github.com/jmesmon/sodalite" repository = "https://github.com/jmesmon/sodalite.git" documentation = "https://docs.rs/crate/sodalite/" readme = "README.md" include = ["Cargo.toml", "src/**/*.rs", "README.md"] edition = "2018" keywords = [ "sodium", "cryptography", "nacl", "no_std"] categories = [ "cryptography" ] [badges] travis-ci = { repository = "jmesmon/sodalite" } appveyor = { repository = "jmesmon/sodalite" } [features] docs = ["rand"] bench = ["rand"] [dependencies] rand = { version = "0.7", optional = true } index-fixed = "0.3" [dev-dependencies] tweetnacl = { path = "tweetnacl", version = "0.4" } rand = "0.7" [workspace]