[package]
edition = "2021"
name = "pylon-storage"
version = "0.3.13"
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"
[features]
default = []
postgres-live = [
"postgres",
"bytes",
"chrono",
]
[lib]
name = "pylon_storage"
path = "src/lib.rs"
[[test]]
name = "postgres_live"
path = "tests/postgres_live.rs"
[dependencies.bytes]
version = "1"
optional = true
[dependencies.chrono]
version = "0.4"
features = [
"std",
"clock",
]
optional = true
default-features = false
[dependencies.postgres]
version = "0.19"
features = [
"with-serde_json-1",
"with-chrono-0_4",
]
optional = true
[dependencies.pylon-http]
version = "0.3.13"
[dependencies.pylon-kernel]
version = "0.3.13"
[dependencies.roaring]
version = "0.10"
[dependencies.rusqlite]
version = "0.35"
features = ["bundled"]
[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