[package]
edition = "2021"
name = "pylon-runtime"
version = "0.3.23"
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_runtime"
path = "src/lib.rs"
[[test]]
name = "backup_restore"
path = "tests/backup_restore.rs"
[[test]]
name = "concurrency"
path = "tests/concurrency.rs"
[[test]]
name = "e2e_smoke"
path = "tests/e2e_smoke.rs"
[[test]]
name = "fuzz"
path = "tests/fuzz.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "postgres_auth_backends"
path = "tests/postgres_auth_backends.rs"
[[test]]
name = "postgres_backend"
path = "tests/postgres_backend.rs"
[[test]]
name = "sync_protocol"
path = "tests/sync_protocol.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[[bench]]
name = "cache_bench"
path = "benches/cache_bench.rs"
harness = false
[[bench]]
name = "realtime_bench"
path = "benches/realtime_bench.rs"
harness = false
[[bench]]
name = "sync_bench"
path = "benches/sync_bench.rs"
harness = false
[dependencies.postgres]
version = "0.19"
features = [
"with-serde_json-1",
"with-chrono-0_4",
]
[dependencies.pylon-auth]
version = "0.3.23"
[dependencies.pylon-crdt]
version = "0.3.23"
[dependencies.pylon-functions]
version = "0.3.23"
[dependencies.pylon-http]
version = "0.3.23"
[dependencies.pylon-kernel]
version = "0.3.23"
[dependencies.pylon-migrate]
version = "0.3.23"
[dependencies.pylon-observability]
version = "0.3.23"
[dependencies.pylon-plugin]
version = "0.3.23"
[dependencies.pylon-policy]
version = "0.3.23"
[dependencies.pylon-realtime]
version = "0.3.23"
[dependencies.pylon-router]
version = "0.3.23"
[dependencies.pylon-storage]
version = "0.3.23"
features = ["postgres-live"]
[dependencies.pylon-studio-api]
version = "0.3.23"
[dependencies.pylon-sync]
version = "0.3.23"
[dependencies.rusqlite]
version = "0.35"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tiny_http]
version = "0.12"
[dependencies.tracing]
version = "0.1"
[dependencies.tungstenite]
version = "0.24"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"