# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "soteria-rs" version = "0.3.1" authors = ["Mike Lodder "] description = "Wrapper around a secret that is stored in memory with the goal to protect against side-channel and speculative attacks." homepage = "https://github.com/mikelodder7/soteria-rs" documentation = "https://docs.rs/soteria-rs" readme = "README.md" keywords = [ "cryptography", "memory", "protection", "secure", ] categories = ["cryptography"] license = "MIT OR Apache-2.0" repository = "https://github.com/mikelodder7/soteria-rs" [dependencies.blsful] version = "2.4" optional = true [dependencies.chacha20poly1305] version = "0.10" [dependencies.ecdsa] version = "0.16" features = [ "arithmetic", "hazmat", ] optional = true [dependencies.ed25519-dalek] version = "2.0.0" optional = true [dependencies.elliptic-curve] version = "0.13" optional = true [dependencies.group] version = "0.13" optional = true [dependencies.merlin] version = "3" [dependencies.rand] version = "0.8" [dependencies.serde] version = "1" optional = true [dependencies.serde_bare] version = "0.5" optional = true [dependencies.string-error] version = "0.1.0" optional = true [dependencies.subtle] version = "2.5" optional = true [dependencies.x25519-dalek] version = "2.0.0" features = ["static_secrets"] optional = true [dependencies.zeroize] version = "1" [dev-dependencies.k256] version = "0.13" features = ["ecdsa"] [features] bls = [ "blsful", "string-error", ] default = [] ed25519 = [ "ed25519-dalek", "string-error", ] elements = [ "dep:group", "string-error", ] secret-key = [ "elliptic-curve", "string-error", ] serde = [ "dep:serde", "serde_bare", "string-error", ] signing = [ "ecdsa", "elliptic-curve", "subtle", "string-error", ] x25519 = [ "string-error", "x25519-dalek", ]