forked from jq-rs/mles-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (29 loc) · 983 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
27
28
29
30
31
32
[package]
name = "mles"
version = "2.2.3"
authors = ["jq-rs"]
edition = "2021"
description = "Mles - a distributed publish/subscribe data server"
license = "MPL-2.0"
repository = "https://github.com/jq-rs/mles-rs"
documentation = "https://mles.io"
readme = "README.md"
categories = ["network-programming"]
keywords = ["protocol", "publish-subscribe", "websocket", "mles"]
[dependencies]
tokio = { version="1.36", features = ["full"] }
tokio-stream = { version="0.1.14", features = ["net"] }
tokio-util = { version="0.7.10", features = ["compat"] }
tokio-rustls = "0.25"
rustls-acme = { version="0.9.2", default-features = false, features = ["tokio", "ring"] }
warp = "0.3.6"
simple_logger = "4.3.3"
clap = { version = "4", features = ["derive"] }
futures-util = { version = "0.3", default-features = false, features = ["sink"] }
log = "0.4.20"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
siphasher = "1.0.0"
http-types = "2"
[profile.release]
lto = true