forked from scuptio/scupt-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (32 loc) · 991 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
35
36
37
38
39
40
41
[lib]
path = "src/lib.rs"
[package]
name = "scupt-net"
version = "0.0.1"
edition = "2021"
[build]
[dependencies]
scupt-util = { git = "https://github.com/scuptio/scupt-util.git" }
serde = { version = "1.0.188", features = ["derive", "rc"] }
tokio = { version = "1.32.0", features = ["full", "tracing"] }
tokio-util = { version = "0.7.8", features = ["codec"] }
serde_json = { version = "1.0.107", features = ["std", "arbitrary_precision", "preserve_order"] }
async-trait = "0.1.73"
async_fn_traits = "0.1.1"
byteorder = "1.4.3"
bytes = "1.5.0"
futures = "0.3.28"
serde_bytes = "0.11.12"
bincode = "2.0.0-rc.3"
rand = "0.8.5"
tracing = { version = "0.1.37" }
console-subscriber = "0.1.10"
async-backtrace = "0.2.6"
lazy_static = "1.4.0"
scc = "2.0.18"
uuid = { version = "1.6.1", features = ["v4"] }
scopeguard = { version = "1.2.0" }
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1.3", features = ["tokio", "server"] }
http-body-util = "0.1"
http = "1"