-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (33 loc) · 964 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
[package]
name = "xhyperd"
version = "0.1.0"
edition = "2021"
authors = ["stackinspector"]
license = "MPL-2.0"
repository = "https://github.com/Berylsoft/xhyperd"
[lib]
path = "lib.rs"
[[bin]]
name = "xhyperd"
path = "main.rs"
[dependencies]
# lib
serde = { version = "1", features = ["derive"] }
serde_json = "1"
http = "1"
http-body = "1"
bytes = { version = "1", features = ["serde"] }
http-serde = "2"
# actor = { git = "https://github.com/Berylsoft/actor", branch = "async-traits", features = ["async"] }
# actor-core = { git = "https://github.com/Berylsoft/actor", branch = "async-traits" }
env_logger = { version = "0.11", default-features = false }
log = "0.4"
hyper = { version = "1", features = ["http1", "server", "client"] }
http-body-util = "0.1"
futures-lite = "2"
async-global-executor = "2"
async-net = "2"
async-channel = "2"
async-ctrlc = "1"
# no need for executor and timer now
smol-hyper = { version = "0.1", default-features = false }