@@ -18,11 +18,11 @@ autoexamples = true
1818all-features = true
1919
2020[features ]
21- default = [" with_client_implementation" , " with_default_transport" , " with_panic" , " with_failure" , " with_log " , " with_env_logger " , " with_device_info" , " with_rust_info" , " with_native_tls " ]
21+ default = [" with_client_implementation" , " with_default_transport" , " with_panic" , " with_failure" , " with_device_info" , " with_rust_info" ]
2222with_reqwest_transport = [" reqwest" , " httpdate" , " with_client_implementation" ]
2323with_curl_transport = [" curl" , " httpdate" , " serde_json" , " with_client_implementation" ]
24- with_default_transport = [" with_reqwest_transport" ]
25- with_client_implementation = [" im" , " url" , " with_backtrace" ]
24+ with_default_transport = [" with_reqwest_transport" , " with_native_tls " ]
25+ with_client_implementation = [" im" , " url" , " with_backtrace" , " rand " ]
2626with_backtrace = [" backtrace" , " regex" ]
2727with_panic = [" with_backtrace" ]
2828with_failure = [" failure" , " with_backtrace" ]
@@ -32,49 +32,53 @@ with_env_logger = ["with_log", "env_logger"]
3232with_error_chain = [" error-chain" , " with_backtrace" ]
3333with_device_info = [" libc" , " hostname" , " uname" , " with_client_implementation" ]
3434with_rust_info = [" rustc_version" , " with_client_implementation" ]
35- with_debug_meta = [" findshlibs" , " goblin " , " memmap " , " with_client_implementation" ]
35+ with_debug_meta = [" findshlibs" , " with_client_implementation" ]
3636with_test_support = []
3737with_rustls = [" reqwest/rustls-tls" ]
3838with_native_tls = [" reqwest/default-tls" ]
3939
4040[dependencies ]
41- backtrace = { version = " 0.3.15 " , optional = true }
42- url = { version = " 1.7.2 " , optional = true }
43- failure = { version = " 0.1.5 " , optional = true }
44- log = { version = " 0.4.6 " , optional = true , features = [" std" ] }
45- sentry-types = " 0.11.0 "
46- env_logger = { version = " 0.6 .1" , optional = true }
47- reqwest = { version = " 0.9.15 " , optional = true , default-features = false }
48- lazy_static = " 1.3 .0"
49- regex = { version = " 1.1.6 " , optional = true }
50- error-chain = { version = " 0.12.0 " , optional = true }
51- im = { version = " 13.0 .0" , optional = true }
52- libc = { version = " 0.2.51 " , optional = true }
41+ backtrace = { version = " 0.3.44 " , optional = true }
42+ url = { version = " 2.1.1 " , optional = true }
43+ failure = { version = " 0.1.6 " , optional = true }
44+ log = { version = " 0.4.8 " , optional = true , features = [" std" ] }
45+ sentry-types = " 0.14.1 "
46+ env_logger = { version = " 0.7 .1" , optional = true }
47+ reqwest = { version = " 0.10.1 " , optional = true , features = [ " blocking " , " json " ] , default-features = false }
48+ lazy_static = " 1.4 .0"
49+ regex = { version = " 1.3.4 " , optional = true }
50+ error-chain = { version = " 0.12.1 " , optional = true }
51+ im = { version = " 14.2 .0" , optional = true }
52+ libc = { version = " 0.2.66 " , optional = true }
5353hostname = { version = " 0.3.0" , optional = true }
5454findshlibs = { version = " 0.5.0" , optional = true }
55- rand = " 0.7.3"
55+ rand = { version = " 0.7.3" , optional = true }
5656httpdate = { version = " 0.3.2" , optional = true }
57- curl = { version = " 0.4.21 " , optional = true }
58- serde_json = { version = " 1.0.39 " , optional = true }
57+ curl = { version = " 0.4.25 " , optional = true }
58+ serde_json = { version = " 1.0.48 " , optional = true }
5959
6060[target ."cfg(not(windows))" .dependencies ]
6161uname = { version = " 0.1.1" , optional = true }
6262
63- [target ."cfg(unix)" .dependencies ]
64- goblin = { version = " 0.0.22" , default-features = false , features = [" elf32" , " elf64" , " endian_fd" , " std" ], optional = true }
65- memmap = { version = " 0.7.0" , optional = true }
66-
6763[build-dependencies ]
6864rustc_version = { version = " 0.2.3" , optional = true }
6965
7066[dev-dependencies ]
71- failure_derive = " 0.1.5 "
72- pretty_env_logger = " 0.3 .0"
67+ failure_derive = " 0.1.6 "
68+ pretty_env_logger = " 0.4 .0"
7369actix-web = { version = " 0.7.19" , default-features = false }
7470
7571[[example ]]
7672name = " error-chain-demo"
7773required-features = [" with_error_chain" ]
7874
75+ [[example ]]
76+ name = " log-demo"
77+ required-features = [" with_env_logger" ]
78+
79+ [[example ]]
80+ name = " thread-demo"
81+ required-features = [" with_env_logger" ]
82+
7983[workspace ]
8084members = [" ." , " integrations/sentry-actix" ]
0 commit comments