1[package] 2name = "openssl-errors" 3version = "0.2.0" 4authors = ["Steven Fackler <sfackler@gmail.com>"] 5edition = "2018" 6license = "MIT/Apache-2.0" 7description = "Custom error library support for the openssl crate." 8repository = "https://github.com/sfackler/rust-openssl" 9readme = "README.md" 10categories = ["api-bindings"] 11 12[dependencies] 13cfg-if = "1.0" 14libc = "0.2" 15 16openssl-sys = { version = "0.9.64", path = "../openssl-sys" } 17 18[dev-dependencies] 19openssl = { version = "0.10.19", path = "../openssl" } 20