1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
use crate::protocol::{ClientSdkInfo, ClientSdkPackage};
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
include!(concat!(env!("OUT_DIR"), "/constants.gen.rs"));
lazy_static::lazy_static! {
pub static ref USER_AGENT: String = format!("sentry.rust/{}", VERSION);
pub static ref SDK_INFO: ClientSdkInfo = ClientSdkInfo {
name: "sentry-rust".into(),
version: VERSION.into(),
packages: vec![ClientSdkPackage {
name: "cargo:sentry".into(),
version: VERSION.into(),
}],
integrations: {
#[allow(unused_mut)]
let mut rv = vec![];
#[cfg(feature = "with_failure")]
{
rv.push("failure".to_string());
}
#[cfg(feature = "with_panic")]
{
rv.push("panic".to_string());
}
#[cfg(feature = "with_error_chain")]
{
rv.push("error_chain".to_string());
}
#[cfg(feature = "with_log")]
{
rv.push("log".to_string());
}
rv
},
};
}