Adds the server half of passkeys as a new published module.
Added
passkeys-server— an installable Kotlin/JVM WebAuthn Relying Party that mints ceremony options and verifies the responses the clients produce. Wraps java-webauthn-server behind a thin, explicit API (PasskeyRelyingPartywith begin/finish registration and authentication); the underlying library is kept internal. Bring-your-own storage viaPasskeyCredentialStore/PasskeyChallengeStoreSPIs with in-memory defaults;passkeyRoutes()mounts the four ceremony endpoints on Ktor. A full register→authenticate round-trip is verified end-to-end against an in-process software authenticator. Runnable demo + browser test page in:sample:server.
passkeys and passkeys-compose are unchanged; they republish at 0.2.0 because the version is shared.
implementation("io.github.androidpoet:passkeys:0.2.0")
implementation("io.github.androidpoet:passkeys-compose:0.2.0")
implementation("io.github.androidpoet:passkeys-server:0.2.0")