# 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 = "gday_encryption" version = "0.3.0" authors = ["Marcin Anforowicz"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Simple encrypted ChaCha20Poly1305 wrapper around an async IO stream." homepage = "https://github.com/manforowicz/gday/tree/main/gday_encryption" readme = "README.md" categories = ["cryptography"] license = "MIT" repository = "https://github.com/manforowicz/gday/" [lib] name = "gday_encryption" path = "src/lib.rs" [[test]] name = "test_integration" path = "tests/test_integration.rs" [[bench]] name = "benchmark" path = "benches/benchmark.rs" harness = false [dependencies.chacha20poly1305] version = "0.10.1" features = ["stream"] [dependencies.pin-project] version = "1.1.7" [dependencies.rand] version = "0.8.5" [dependencies.tokio] version = "1.41.1" features = ["io-util"] [dev-dependencies.criterion] version = "0.5.1" features = ["async_tokio"] [dev-dependencies.tokio] version = "1.41.1" features = [ "net", "rt", "macros", ]