-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (44 loc) · 1.08 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "quark-im"
version = "0.1.0"
edition = "2021"
[dependencies]
# common
dotenvy = "0"
anyhow = "1"
parking_lot = "0"
pin-project-lite = "0"
# logger
tracing = "0"
tracing-subscriber = "0"
# async runtime
futures = "0"
async-trait = "0"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0", features = ["full"] }
tokio-serde = { version = "0", features = ["messagepack"] }
reqwest = { version = "0", features = [
"json",
"stream",
"rustls-tls",
"cookies",
"deflate",
"gzip",
"zstd",
] }
# codec
serde = { version = "1", features = ["derive"] }
rmp-serde = "1"
bytes = "1"
uuid = { version = "1", features = ["serde", "fast-rng", "v4"] }
chrono = { version = "0", features = ["serde"] }
# storage
dashmap = "6"
pathfinding = "4"
# transport layer
s2n-quic = { version = "1", features = ["provider-event-tracing"] }
# web layer
axum = { version = "0", features = ["ws", "macros"] }
axum-extra = { version = "0", features = ["typed-header"] }
tower = { version = "0", features = ["full"] }
tower-http = { version = "0", features = ["full"] }