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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
Index: tracing/Cargo.toml
===================================================================
--- tracing.orig/Cargo.toml
+++ tracing/Cargo.toml
@@ -62,38 +62,10 @@ name = "tracing"
path = "src/lib.rs"
[[test]]
-name = "enabled"
-path = "tests/enabled.rs"
-
-[[test]]
-name = "event"
-path = "tests/event.rs"
-
-[[test]]
-name = "filter_caching_is_lexically_scoped"
-path = "tests/filter_caching_is_lexically_scoped.rs"
-
-[[test]]
-name = "filters_are_not_reevaluated_for_the_same_span"
-path = "tests/filters_are_not_reevaluated_for_the_same_span.rs"
-
-[[test]]
-name = "filters_are_reevaluated_for_different_call_sites"
-path = "tests/filters_are_reevaluated_for_different_call_sites.rs"
-
-[[test]]
-name = "filters_dont_leak"
-path = "tests/filters_dont_leak.rs"
-
-[[test]]
name = "future_send"
path = "tests/future_send.rs"
[[test]]
-name = "instrument"
-path = "tests/instrument.rs"
-
-[[test]]
name = "macro_imports"
path = "tests/macro_imports.rs"
@@ -105,38 +77,6 @@ path = "tests/macros.rs"
name = "macros_incompatible_concat"
path = "tests/macros_incompatible_concat.rs"
-[[test]]
-name = "max_level_hint"
-path = "tests/max_level_hint.rs"
-
-[[test]]
-name = "missed_register_callsite"
-path = "tests/missed_register_callsite.rs"
-
-[[test]]
-name = "multiple_max_level_hints"
-path = "tests/multiple_max_level_hints.rs"
-
-[[test]]
-name = "no_subscriber"
-path = "tests/no_subscriber.rs"
-
-[[test]]
-name = "register_callsite_deadlock"
-path = "tests/register_callsite_deadlock.rs"
-
-[[test]]
-name = "scoped_clobbers_default"
-path = "tests/scoped_clobbers_default.rs"
-
-[[test]]
-name = "span"
-path = "tests/span.rs"
-
-[[test]]
-name = "subscriber"
-path = "tests/subscriber.rs"
-
[[bench]]
name = "baseline"
path = "benches/baseline.rs"
|