-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 950 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
33
34
[package]
name = "harmony"
authors = ["Cryptex"]
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "net", "time", "macros", "sync", "signal", "parking_lot"] }
log = "0.4"
tokio-tungstenite = "0.20"
qstring = "0.7"
amqprs = { version = "1.5", features = ["traces", "compliance_assert"] }
uuid = { version = "1.5", features = ["v4", "fast-rng"] }
ahash = "0.8"
async-trait = "0.1"
futures-util = "0.3"
simd-json = "0.13"
essence = { git = "https://github.com/AdaptChat/essence.git", features = ["db"] }
rmp-serde = "1.1"
serde = "1"
dotenvy = "0.15"
bincode = { version = "2.0.0-rc.3", features = ["serde"] }
deadpool-redis = "0.13"
chrono = "0.4"
env_logger = "0.10"
[patch.crates-io]
deadpool-redis = { git = 'https://github.com/jay3332/deadpool.git' }
[profile.ci]
debug = 2
inherits = "dev"