53 releases (18 breaking)
new 0.19.0 | Nov 25, 2024 |
---|---|
0.17.0 | Sep 27, 2024 |
0.16.5 | Jul 10, 2024 |
0.16.0 | Mar 11, 2024 |
0.1.4 | Jul 28, 2020 |
#614 in Rust patterns
4,669 downloads per month
Used in prima-tracing
105KB
2K
SLoC
bridge.rs
Prima bridge pattern implementation for rust
Examples
You can find all the examples in examples directory.
lib.rs
:
This crate gives an high level API to execute external HTTP requests.
It is supposed to give the basics building blocks for building bridges to other services while abstracting the low level stuff like adding custom headers and request tracing.
It supports both REST and GraphQL requests.
You should start by creating a [Bridge] instance. This instance should live for all the application lifetime.
Do not create a new bridge on every request!
You should use something like once_cell or lazy_static, or some sort of inversion of control container to pass around.
The bridge implement a type state pattern to build the external request.
Features
-
auth0
- enable auth0 integration, allowing bridge.rs to retrieve tokens from auth0 for authentication -
gzip
- provides response body gzip decompression. -
redis-tls
- add support for connecting to redis with tls -
tracing-opentelemetry
adds support for integration with opentelemetry. This feature is an alias for thetracing_opentelemetry_0_21
feature.tracing_opentelemetry_0_20
is also available as to support the 0.20 opentelemetry libraries.We are going to support at least the last 3 versions of opentelemetry. After that we mightremove support for older otel version without it being a breaking change.
Dependencies
~7–23MB
~353K SLoC