# 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 believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] edition = "2018" name = "ciph" version = "0.1.0" authors = ["Stephan Luther "] description = "Symmetric cipher layer for async read/write connections." readme = "README.md" keywords = ["crypto", "salsa20", "stream-cipher"] categories = ["cryptography"] license = "MIT" repository = "https://git.sr.ht/~kvsari/ciph" [[example]] name = "hyper_client" path = "examples/hyper_client.rs" required-features = ["hyper"] [[test]] name = "hyper_client_server" path = "tests/hyper_client_server.rs" required-features = ["hyper"] [dependencies.base64] version = "0.13" [dependencies.chrono] version = "0.4" [dependencies.cipher] version = "0.2" features = ["std"] [dependencies.derive-getters] version = "0.2" [dependencies.futures] version = "0.3" [dependencies.getrandom] version = "0.2" [dependencies.hyper] version = "0.14" features = ["client", "tcp"] optional = true [dependencies.log] version = "0.4" [dependencies.rand] version = "0.8" [dependencies.rand_chacha] version = "0.3" [dependencies.salsa20] version = "0.7" [dependencies.sha3] version = "0.9" [dependencies.thiserror] version = "1.0" [dependencies.tokio] version = "1.0" [dependencies.tower-service] version = "0.3" [dev-dependencies.hyper] version = "0.14" features = ["full"] [dev-dependencies.tokio] version = "1.0" features = ["full"] [features] default = []