Skip to content

Releases: dtolnay/trybuild

1.0.71

09 Oct 02:34
1.0.71
a252a22
Compare
Choose a tag to compare
  • Fix some cases where unusual compiler output could cause trybuild's normalization heuristic to crash

1.0.70

08 Oct 18:51
1.0.70
7aabcce
Compare
Choose a tag to compare
  • Normalize "and $N others" in "the following other types implement trait" error messages (#198, thanks @mejrs)

1.0.69

06 Oct 16:58
1.0.69
3900615
Compare
Choose a tag to compare
  • Fix handling of "dep:" dependencies when referring to a target-dependent dependency in cargo's [target.'cfg(…)'.dependencies] syntax (#197)

1.0.68

06 Oct 16:56
1.0.68
0b9bcba
Compare
Choose a tag to compare
  • Fix build error when a crate feature and an optional dependency and a non-optional dev-dependency all 3 have the same name (#196)

1.0.67

06 Oct 05:12
1.0.67
86c37ac
Compare
Choose a tag to compare
  • Fix "optional dependency is not included in any features" error when using cargo 1.60.0's "namespaced features" syntax (#171)

1.0.66

05 Oct 05:29
1.0.66
0d9d94c
Compare
Choose a tag to compare
  • Normalize left margin of error output (#194)

1.0.65

22 Sep 23:06
1.0.65
83e9800
Compare
Choose a tag to compare

1.0.64

03 Aug 03:54
1.0.64
b8b2758
Compare
Choose a tag to compare
  • Add categories and keywords to crates.io metadata

1.0.63

05 Jun 18:33
1.0.63
b917900
Compare
Choose a tag to compare
  • Allow later globs to override pass/fail status of earlier globs (#174)

    t.compile_fail("tests/ui/*.rs");
    t.pass("tests/ui/ok.rs");

    This will test tests/ui/ok.rs expecting it to pass, and all the rest of the contents of tests/ui expecting them to fail. Previous versions of trybuild would test tests/ui/ok.rs expecting it to fail and again expecting it to pass, which can't both be true.

1.0.62

04 Jun 07:26
1.0.62
5fd4729
Compare
Choose a tag to compare
  • Support directly running a trybuild integration test binary without going through cargo test (#14)