[package]
edition = "2024"
name = "ora-backend-postgres"
version = "1.0.0-rc.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Part of the Ora scheduler framework."
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/tamasfe/ora/tree/master"
resolver = "2"
[features]
__dump_sql = []
[lib]
name = "ora_backend_postgres"
path = "src/lib.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[dependencies.async-stream]
version = "0.3.6"
[dependencies.base64]
version = "0.22.1"
[dependencies.deadpool-postgres]
version = "0.14.1"
[dependencies.futures]
version = "0.3.31"
[dependencies.ora-backend]
version = "1.0.0-rc.1"
[dependencies.refinery]
version = "0.9.0"
features = ["tokio-postgres"]
[dependencies.sea-query]
version = "1.0.0-rc.29"
features = [
"backend-postgres",
"with-uuid",
"postgres-array",
]
default-features = false
[dependencies.sea-query-postgres]
version = "0.6.0-rc.3"
features = [
"postgres-array",
"with-uuid",
]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tokio]
version = "1.49.0"
features = [
"time",
"macros",
]
[dependencies.tokio-postgres]
version = "0.7.15"
features = ["with-uuid-1"]
[dependencies.tracing]
version = "0.1.41"
[dependencies.uuid]
version = "1.19.0"
features = [
"v4",
"v7",
"serde",
]
[dev-dependencies.ora-backend]
version = "1.0.0-rc.1"
features = ["test"]
[lints.clippy]
default_trait_access = "allow"
empty_docs = "allow"
ignored_unit_patterns = "allow"
map_unwrap_or = "allow"
match_wildcard_for_single_variants = "allow"
missing_errors_doc = "allow"
module_name_repetitions = "allow"
needless_pass_by_value = "allow"
needless_raw_string_hashes = "allow"
no_effect_underscore_binding = "allow"
ref_option_ref = "allow"
should_panic_without_expect = "allow"
similar_names = "allow"
single_match = "allow"
single_match_else = "allow"
struct_excessive_bools = "allow"
struct_field_names = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
type_repetition_in_bounds = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"