-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (66 loc) · 2.08 KB
/
Cargo.toml
File metadata and controls
81 lines (66 loc) · 2.08 KB
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
[workspace]
members = [".", "rumqttd-protocol", "fuzz"]
[workspace.dependencies]
# Rename our in-tree copy of `rumqttd` to prevent confusion with the published crate.
rumqttd-protocol = { path = "rumqttd-protocol", package = "rumqttd" }
[workspace.dependencies.tokio]
version = "1.35.1"
features = ["full"]
[package]
name = "foxmq"
version = "0.3.0"
edition = "2021"
publish = false
default-run = "foxmq"
[dependencies.tashi-consensus-engine]
git = "ssh://git@github.com/tashigg/tashi-consensus-engine"
rev = "aaf0206f2a71c710bafe6c5c89f172e5fae2b277"
[dependencies.tashi-collections]
git = "ssh://git@github.com/tashigg/tashi-consensus-engine"
rev = "aaf0206f2a71c710bafe6c5c89f172e5fae2b277"
[dependencies]
argon2 = { version = "0.5.3", features = ["std"] }
bytes = "1.5.0"
color-eyre = "0.6.2"
dialoguer = "0.11.0"
tokio = { workspace = true }
dotenvy = "0.15.7"
hex = "0.4.3"
num_enum = "0.7.2"
rand = "0.8.5"
rumqttd-protocol.workspace = true
serde = { version = "1.0.196", features = ["derive", "std"] }
thiserror = "1.0.56"
toml = { version = "0.8.10", features = ["parse"] }
tracing = { version = "0.1.40", features = ["attributes"] }
tokio-util = "0.7.10"
der = { version = "0.7.9", features = ["derive"] }
futures = { version = "0.3.30", features = ["std", "alloc"] }
slotmap = "1.0.7"
arbitrary = { version = "1", optional = true, features = ["derive"] }
time = { version = "0.3.36", features = ["formatting"] }
rustls-pemfile = "2.2.0"
[dependencies.clap]
version = "4.5.0"
features = ["derive", "env"]
[dependencies.tokio-rustls]
version = "0.26.0"
default-features = false
features = ["ring", "tls12"]
[dependencies.tracing-subscriber]
version = "0.3.18"
features = ["json", "env-filter"]
# For Websockets (and later, possibly HTTP API) support
[dependencies.axum]
version = "0.7.5"
features = ["ws"]
# Recommended by `color-eyre` to improve performance:
# https://docs.rs/color-eyre/latest/color_eyre/#improving-perf-on-debug-builds
[profile.dev.package.backtrace]
opt-level = 3
[profile.dev.package.tokio]
opt-level = 3
[profile.dev.package.argon2]
opt-level = 3
[dev-dependencies]
expect-test = "1.4.1"