[package]
edition = "2021"
name = "pylon-auth"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pylon — realtime backend as a single Rust binary. Schema, policies, server functions, live queries, auth — one process."
homepage = "https://pylonsync.com"
readme = "README.md"
keywords = [
"realtime",
"database",
"sync",
"backend",
"websocket",
]
categories = [
"database",
"web-programming",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/pylonsync/pylon"
[lib]
name = "pylon_auth"
path = "src/lib.rs"
[dependencies.argon2]
version = "0.5"
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.ureq]
version = "2.10"
features = [
"tls",
"json",
]
default-features = false