relay_common/
lib.rs

1//! Common functionality for the sentry relay.
2#![warn(missing_docs)]
3#![doc(
4    html_logo_url = "https://raw.githubusercontent.com/getsentry/relay/master/artwork/relay-icon.png",
5    html_favicon_url = "https://raw.githubusercontent.com/getsentry/relay/master/artwork/relay-icon.png"
6)]
7#![allow(clippy::derive_partial_eq_without_eq)]
8
9mod macros;
10
11pub mod glob2;
12pub mod time;
13
14pub use sentry_types::{Auth, Dsn, ParseAuthError, ParseDsnError, Scheme};