keywarden

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

Cargo.toml (654B)


      1 [package]
      2 authors = ["Zack Newman <zack@philomathiclife.com>"]
      3 categories = ["api-bindings", "web-programming::http-server"]
      4 description = "Passkey-only implementation of the Bitwarden server API."
      5 documentation = "https://crates.io/crates/keywarden"
      6 edition = "2021"
      7 keywords = ["bitwarden", "passkey", "password", "security", "webauthn"]
      8 license = "AGPL-3.0-only"
      9 name = "keywarden"
     10 readme = "README.md"
     11 repository = "https://git.philomathiclife.com/repos/keywarden/"
     12 version = "0.1.0"
     13 
     14 [[bin]]
     15 name = "keywarden"
     16 path = "src/main.rs"
     17 
     18 [badges]
     19 maintenance = { status = "actively-developed" }
     20 
     21 [profile.release]
     22 lto = true
     23 panic = 'abort'
     24 strip = true