keywarden

Passkey-only implementation of the Bitwarden server API.
git clone https://git.philomathiclife.com/repos/keywarden
Log | Files | Refs | README

main.rs (613B)


      1 //! # `keywarden`
      2 //!
      3 //! Consult [`README.md`](https://crates.io/crates/keywarden).
      4 #![deny(
      5     future_incompatible,
      6     let_underscore,
      7     missing_docs,
      8     nonstandard_style,
      9     rust_2018_compatibility,
     10     rust_2018_idioms,
     11     rust_2021_compatibility,
     12     rust_2024_compatibility,
     13     unsafe_code,
     14     unused,
     15     warnings,
     16     clippy::all,
     17     clippy::cargo,
     18     clippy::complexity,
     19     clippy::correctness,
     20     clippy::nursery,
     21     clippy::pedantic,
     22     clippy::perf,
     23     clippy::restriction,
     24     clippy::style,
     25     clippy::suspicious
     26 )]
     27 #![allow(clippy::blanket_clippy_restriction_lints)]
     28 fn main() {}