Skip to content

Releases: snaggen/async-stomp

0.6.2

14 Aug 07:11

Choose a tag to compare

  • Update dependencies
  • Edition 2024

0.6.1

08 Apr 06:57

Choose a tag to compare

0.6.0

04 Apr 08:35

Choose a tag to compare

The ClientTransport is no longer using TcpStream, but a new type TransportStream that wraps either a TcpStream or a TslStream. So if you want to access the underlying stream you now must do:

match transport_stream {
       TransportStream::Plain(stream) => ...
       TransportStream::Tls(stream) => ...,
}

0.5.1

13 Feb 11:11

Choose a tag to compare

  • Fix an issue where an incomplete error was turned in to backtrack in the parser, causing the parsing to fail.
  • Bump winnow to 0.7

v0.5.0

29 Oct 10:43

Choose a tag to compare

  • Switch nom to winnow
  • Add support for connection and subscription headers
  • Change to use builders for connect and subscribe, to allow for more flexible parameters

v0.4.0

29 Oct 08:57

Choose a tag to compare

  • Fork tokio-stomp-2 and rebrand to get the nom7 work in tokio-stomp-2 released
  • Relicense to EUPL in compliance with original MIT