webauthn-rs-proto

Patched webauthn-rs-proto (https://crates.io/crates/webauthn-rs-proto) that adds support for Ed25519.
git clone https://git.philomathiclife.com/repos/webauthn-rs-proto
Log | Files | Refs | README | LICENSE

Cargo.toml (1171B)


      1 [package]
      2 name = "webauthn-rs-proto"
      3 version = "0.4.10"
      4 authors = ["William Brown <william@blackhats.net.au>", "Zack Newman <zack@philomathiclife.com>"]
      5 edition = "2021"
      6 description = "Webauthn Specification Bindings"
      7 repository = "https://git.philomathiclife.com/repos/webauthn-rs-proto"
      8 readme = "README.md"
      9 keywords = ["webauthn", "authentication"]
     10 categories = ["authentication", "web-programming"]
     11 license = "MPL-2.0"
     12 
     13 [features]
     14 wasm = ["wasm-bindgen", "web-sys", "js-sys", "serde-wasm-bindgen"]
     15 
     16 [dependencies]
     17 base64urlsafedata = { version = "0.1.2" }
     18 serde = { version = "1", features = ["derive"] }
     19 serde_json = "1.0"
     20 url = { version = "2", features = ["serde"] }
     21 wasm-bindgen = { version = "0.2", features = ["serde-serialize"], optional = true }
     22 serde-wasm-bindgen = { version = "0.4", optional = true }
     23 js-sys = { version = "0.3", optional = true }
     24 
     25 [dependencies.web-sys]
     26 version = "0.3"
     27 optional = true
     28 features = [
     29     "CredentialCreationOptions",
     30     "CredentialRequestOptions",
     31     "PublicKeyCredential",
     32     "PublicKeyCredentialCreationOptions",
     33     "AuthenticationExtensionsClientInputs",
     34     "AuthenticationExtensionsClientOutputs",
     35     "console",
     36 ]