Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
213 changes: 209 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,16 @@ opentelemetry = { version = "0.31.0", features = ["metrics"] }
opentelemetry_sdk = { version = "0.31.0", features = ["metrics", "rt-tokio"] }
opentelemetry-prometheus = "0.31"
prometheus = "0.14"
rust-telemetry = {version = "1.2.0", features = ["axum"]}
rust-telemetry = { version = "1.2.0", features = ["axum"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
time = { version = "0.3.44", features = ["serde"] }
tokio = { version = "1.48.0", features = ["full"] }
tower = "0.5.0"
tower-http = { version = "0.6.6", features = [ "catch-panic", "normalize-path" ] }
tower-http = { version = "0.6.6", features = ["catch-panic", "normalize-path"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.20"
uuid = { version = "1", features = ["v4", "v5"] }

[dev-dependencies]
futures = "0.3.31"
Expand Down
6 changes: 5 additions & 1 deletion config.sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ hedwig:
image: null

# headers specific for notifications sent to iOS devices: https://developer.apple.com/documentation/usernotifications/sending-notification-requests-to-apns#Send-a-POST-request-to-APNs
# those will be used both through FCM and direct APNS
# those will be used both through FCM and direct APNS (regular notifications).
# Note: VoIP pushes (data_message: ios_voip) use apns_push_type "voip" and the device's
# app_id (which must end in ".voip", e.g. com.example.app.voip) as the apns_topic.
# The app must register the pusher with notify_via: apns (the pushkey is a PushKit
# token, not an FCM token) and apns_key_file_path must be configured.
apns_headers:
# https://developer.apple.com/documentation/usernotifications/sending-notification-requests-to-apns#Know-when-to-use-push-types
apns_push_type: background
Expand Down
Loading
Loading