-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (24 loc) · 897 Bytes
/
Cargo.toml
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
[package]
name = "async-stomp"
version = "0.5.1"
description = "An asynchronous streaming STOMP client"
authors = ["Mattias Eriksson <[email protected]>"]
original-authors = ["Alex Whitney <[email protected]>, Jens Walter <[email protected]>, Alexander Kunde <[email protected]>"]
repository = "https://github.com/snaggen/async-stomp"
homepage = "https://github.com/snaggen/async-stomp"
keywords = ["stomp", "tokio", "streaming", "async"]
license = "EUPL-1.2"
readme = "README.md"
categories = ["network-programming", "parser-implementations"]
edition = "2021"
[dependencies]
bytes = "1.8.0"
custom_debug_derive = "0.6.1"
anyhow = "1.0"
futures = "0.3"
tokio = { version = "1", features = ["net"] }
tokio-util = { version = "0.7", features = ["codec"] }
winnow = "0.7"
typed-builder = "0.21.0"
[dev-dependencies]
tokio = { version = "1", features = ["time", "macros", "rt-multi-thread"] }