# 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 = "autograph_protocol" version = "1.0.0-alpha.3" authors = ["Christoffer Carlsson "] description = "A Rust implementation of the Autograph protocol" keywords = [ "security", "identity", "cryptography", "privacy", "authentication", ] license = "Unlicense" repository = "https://github.com/christoffercarlsson/autograph" [lib] name = "autograph_protocol" path = "src/lib.rs" [[test]] name = "channel" path = "tests/channel.rs" [[test]] name = "key_pair" path = "tests/key_pair.rs" [[bench]] name = "main" path = "benchmarks/main.rs" harness = false [dependencies.chacha20poly1305] version = "0.10.1" features = [ "rand_core", "alloc", ] default-features = false [dependencies.ed25519-dalek] version = "2.1.0" features = [ "rand_core", "zeroize", ] default-features = false [dependencies.hkdf] version = "0.12.4" [dependencies.rand_core] version = "0.6.4" [dependencies.sha2] version = "0.10.8" default-features = false [dependencies.x25519-dalek] version = "2.0.0" features = [ "static_secrets", "zeroize", ] default-features = false [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.rand] version = "0.8.5"