[package]
edition = "2021"
rust-version = "1.82.0"
name = "palimpsest-cli"
version = "0.1.1"
authors = ["colton@thousandbirds.ai"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Standalone CLI that runs the embedded Palimpsest server."
homepage = "https://github.com/thousandbirds/palimpsest"
readme = "README.md"
keywords = [
"postgres",
"wal",
"sync",
"dataflow",
"grpc",
]
categories = [
"database",
"network-programming",
"wasm",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/thousandbirds/palimpsest"
[features]
default = []
slot-info = ["dep:tokio-postgres"]
[[bin]]
name = "palimpsest"
path = "src/main.rs"
[dependencies.palimpsest-paas-core]
version = "0.1.1"
[dependencies.palimpsest-permissions]
version = "0.1.1"
[dependencies.palimpsest-server]
version = "0.1.1"
[dependencies.palimpsest-sql]
version = "0.1.1"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"derive",
]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.40"
features = [
"macros",
"rt-multi-thread",
"sync",
"macros",
"rt-multi-thread",
"signal",
]
[dependencies.tokio-postgres]
version = "0.7"
features = ["runtime"]
optional = true
default-features = false
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unreachable_pub = "warn"
unsafe_code = "forbid"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1