# 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 = "scram-rs" version = "0.13.2" authors = ["Aleksandr Morozov "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Salted Challenge Response Authentication Mechanism (SCRAM) SASL mechanism, a library which implements SCRAM logic" documentation = "https://docs.rs/scram-rs/latest/scram_rs/" readme = "README.md" keywords = [ "SCRAM", "SASL", ] categories = [ "authentication", "network-programming", ] license = "MPL-2.0" repository = "https://repo.4neko.org/4NEKO/scram-rs" [lib] name = "scram_rs" path = "src/lib.rs" [[example]] name = "scram_cs" path = "examples/scram_cs.rs" [[example]] name = "scram_cs_async" path = "examples/scram_cs_async.rs" [[example]] name = "scram_cs_async_dyn" path = "examples/scram_cs_async_dyn.rs" [[example]] name = "scram_cs_async_err" path = "examples/scram_cs_async_err.rs" [[example]] name = "scram_cs_dyn" path = "examples/scram_cs_dyn.rs" [[example]] name = "scram_cs_err" path = "examples/scram_cs_err.rs" [[example]] name = "scram_cs_key" path = "examples/scram_cs_key.rs" [[example]] name = "scram_cs_ring" path = "examples/scram_cs_ring.rs" [[example]] name = "scram_cs_variable" path = "examples/scram_cs_variable.rs" [[example]] name = "scram_types_override" path = "examples/scram_types_override.rs" [dependencies.async-trait] version = "0.1" [dependencies.base64] version = "0.22" [dependencies.getrandom] version = "0.2" [dependencies.hmac] version = "0.12" [dependencies.md-5] version = "0.10" [dependencies.pbkdf2] version = "0.12" [dependencies.ring] version = "0.17" [dependencies.sha-1] version = "0.10" [dependencies.sha2] version = "0.10" [dev-dependencies.tokio] version = "1" features = ["full"] [dev-dependencies.tokio-test] version = "0.4" [features] default = ["std"] exclude_sha1 = [] std = [] use_ring = [] without_async = []