[package]
edition = "2021"
name = "serbero"
version = "0.1.1"
authors = ["Francisco Calderón <fjcalderon@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Nostr-native dispute coordination daemon for the Mostro ecosystem"
homepage = "https://mostro.network"
readme = "README.md"
license = "MIT"
repository = "https://github.com/MostroP2P/serbero"
[lib]
name = "serbero"
path = "src/lib.rs"
[[bin]]
name = "serbero"
path = "src/main.rs"
[[test]]
name = "phase1_dedup"
path = "tests/phase1_dedup.rs"
[[test]]
name = "phase1_detection"
path = "tests/phase1_detection.rs"
[[test]]
name = "phase1_failure"
path = "tests/phase1_failure.rs"
[[test]]
name = "phase2_assignment"
path = "tests/phase2_assignment.rs"
[[test]]
name = "phase2_lifecycle"
path = "tests/phase2_lifecycle.rs"
[[test]]
name = "phase2_renotification"
path = "tests/phase2_renotification.rs"
[[test]]
name = "phase3_authority_boundary"
path = "tests/phase3_authority_boundary.rs"
[[test]]
name = "phase3_cooperative_summary"
path = "tests/phase3_cooperative_summary.rs"
[[test]]
name = "phase3_escalation_triggers"
path = "tests/phase3_escalation_triggers.rs"
[[test]]
name = "phase3_event_driven_start"
path = "tests/phase3_event_driven_start.rs"
[[test]]
name = "phase3_external_resolution_report"
path = "tests/phase3_external_resolution_report.rs"
[[test]]
name = "phase3_followup_reasoning_failure"
path = "tests/phase3_followup_reasoning_failure.rs"
[[test]]
name = "phase3_followup_round"
path = "tests/phase3_followup_round.rs"
[[test]]
name = "phase3_followup_summary"
path = "tests/phase3_followup_summary.rs"
[[test]]
name = "phase3_provider_not_yet_implemented"
path = "tests/phase3_provider_not_yet_implemented.rs"
[[test]]
name = "phase3_provider_swap"
path = "tests/phase3_provider_swap.rs"
[[test]]
name = "phase3_response_dedup_restart"
path = "tests/phase3_response_dedup_restart.rs"
[[test]]
name = "phase3_response_ingest"
path = "tests/phase3_response_ingest.rs"
[[test]]
name = "phase3_routing_model"
path = "tests/phase3_routing_model.rs"
[[test]]
name = "phase3_session_open"
path = "tests/phase3_session_open.rs"
[[test]]
name = "phase3_session_open_gating"
path = "tests/phase3_session_open_gating.rs"
[[test]]
name = "phase3_stale_message"
path = "tests/phase3_stale_message.rs"
[[test]]
name = "phase3_summary_escalation"
path = "tests/phase3_summary_escalation.rs"
[[test]]
name = "phase3_superseded_by_human"
path = "tests/phase3_superseded_by_human.rs"
[[test]]
name = "phase3_take_reasoning_coupling"
path = "tests/phase3_take_reasoning_coupling.rs"
[[test]]
name = "phase4_dispatch"
path = "tests/phase4_dispatch.rs"
[[test]]
name = "phase4_foundational"
path = "tests/phase4_foundational.rs"
[[test]]
name = "phase4_supersession"
path = "tests/phase4_supersession.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.mostro-core]
version = "0.8.4"
[dependencies.nostr-sdk]
version = "0.44.1"
features = [
"nip59",
"nip44",
"nip04",
]
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"json",
]
default-features = false
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.httpmock]
version = "0.7"
[dev-dependencies.nostr-relay-builder]
version = "0.44.0"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[profile.release]
lto = "thin"
codegen-units = 1