webauthn_rp

WebAuthn Level 3 RP library.
git clone https://git.philomathiclife.com/repos/webauthn_rp
Log | Files | Refs | README

Cargo.toml (682B)


      1 [package]
      2 authors = ["Zack Newman <zack@philomathiclife.com>"]
      3 categories = ["api-bindings", "authentication", "web-programming::http-server"]
      4 description = "Web Authentication (WebAuthn) Level 3 Relying Party (RP) API."
      5 documentation = "https://docs.rs/webauthn_rp/latest/webauthn_rp/"
      6 edition = "2021"
      7 keywords = ["authentication", "fido2", "rp", "webauthn"]
      8 license = "MIT OR Apache-2.0"
      9 name = "webauthn_rp"
     10 readme = "README.md"
     11 repository = "https://git.philomathiclife.com/repos/webauthn_rp/"
     12 version = "0.1.0"
     13 
     14 [lib]
     15 name = "webauthn_rp"
     16 path = "src/lib.rs"
     17 
     18 [badges]
     19 maintenance = { status = "actively-developed" }
     20 
     21 [profile.release]
     22 lto = true
     23 panic = 'abort'
     24 strip = true