[package]
edition = "2024"
rust-version = "1.85"
name = "aviso"
version = "2.0.0"
authors = [
"Samet Demir <samet.demir@ecmwf.int>",
"James Hawkes <james.hawkes@ecmwf.int>",
"Tiago Quintino <tiago.quintino@ecmwf.int>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core client library for aviso-server, ECMWF's notification service."
homepage = "https://github.com/ecmwf/aviso-client"
documentation = "https://github.com/ecmwf/aviso-client"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/ecmwf/aviso-client"
[lib]
name = "aviso"
path = "src/lib.rs"
[[test]]
name = "cloudevent_id_property"
path = "tests/cloudevent_id_property.rs"
[[test]]
name = "state_store_kill_fuzz"
path = "tests/state_store_kill_fuzz.rs"
harness = false
[[test]]
name = "state_store_property"
path = "tests/state_store_property.rs"
[[test]]
name = "watch_state_machine_property"
path = "tests/watch_state_machine_property.rs"
[[test]]
name = "watch_state_machine_transitions"
path = "tests/watch_state_machine_transitions.rs"
[[test]]
name = "watch_supervisor_happy_path"
path = "tests/watch_supervisor_happy_path.rs"
[[test]]
name = "watch_supervisor_resilience"
path = "tests/watch_supervisor_resilience.rs"
[[test]]
name = "watch_supervisor_triggers"
path = "tests/watch_supervisor_triggers.rs"
[[test]]
name = "watch_supervisor_triggers_command"
path = "tests/watch_supervisor_triggers_command.rs"
[[test]]
name = "watch_supervisor_triggers_webhook"
path = "tests/watch_supervisor_triggers_webhook.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.atomicwrites]
version = "0.4"
[dependencies.base64]
version = "0.22"
[dependencies.fd-lock]
version = "4.0"
[dependencies.finesse]
version = "2.0.0"
[dependencies.futures-core]
version = "0.3"
features = ["std"]
default-features = false
[dependencies.futures-util]
version = "0.3"
features = ["alloc"]
default-features = false
[dependencies.hex]
version = "0.4"
[dependencies.httpdate]
version = "1.0"
[dependencies.humantime-serde]
version = "1.1"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
"charset",
"http2",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_jcs]
version = "0.2"
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_norway]
version = "0.9"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.45"
features = [
"fs",
"io-util",
"macros",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
]
default-features = false
[dependencies.tracing]
version = "0.1"
features = [
"std",
"attributes",
"log",
]
default-features = false
[dependencies.url]
version = "2.5"
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.static_assertions]
version = "1.1"
[dev-dependencies.tempfile]
version = "3.10"
[dev-dependencies.tokio]
version = "1.45"
features = [
"fs",
"io-util",
"macros",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
"test-util",
]
default-features = false
[dev-dependencies.wiremock]
version = "0.6"
[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_op_in_unsafe_fn = "deny"