[package]
edition = "2021"
name = "pushkin-core"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core envelope, manifest, pipeline, and waiver types for the pushkin write-gate"
readme = false
license = "MIT"
repository = "https://github.com/acoletti/pushkin"
[lib]
name = "pushkin_core"
path = "src/lib.rs"
[[test]]
name = "delivery"
path = "tests/delivery.rs"
[[test]]
name = "events"
path = "tests/events.rs"
[[test]]
name = "legacy_rules"
path = "tests/legacy_rules.rs"
[[test]]
name = "manifest"
path = "tests/manifest.rs"
[[test]]
name = "manifest_epoch"
path = "tests/manifest_epoch.rs"
[[test]]
name = "mapper"
path = "tests/mapper.rs"
[[test]]
name = "pipeline"
path = "tests/pipeline.rs"
[dependencies.globset]
version = "=0.4.16"
[dependencies.rusqlite]
version = "=0.37.0"
features = ["bundled"]
[dependencies.serde]
version = "=1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "=1.0.151"
[dependencies.thiserror]
version = "=2.0.20"
[dependencies.time]
version = "=0.3.47"
features = [
"formatting",
"parsing",
]
[dependencies.toml]
version = "=0.9.8"
[dependencies.tree-sitter]
version = "=0.26.12"
[dependencies.tree-sitter-python]
version = "=0.25.0"
[dependencies.tree-sitter-rust]
version = "=0.24.2"
[dependencies.tree-sitter-sequel]
version = "=0.3.11"
[dependencies.tree-sitter-typescript]
version = "=0.23.2"
[dependencies.uuid]
version = "=1.18.1"
features = ["v4"]
[dev-dependencies.tempfile]
version = "=3.23.0"
[lints.clippy]
expect_used = "deny"
panic = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
unsafe_code = "forbid"