forked from Thomasdezeeuw/heph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (42 loc) · 1.8 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
[package]
name = "heph"
description = "Heph is an actor framework based on asynchronous functions."
version = "0.3.1"
authors = ["Thomas de Zeeuw <[email protected]>"]
license = "MIT"
documentation = "https://docs.rs/heph"
repository = "https://github.com/Thomasdezeeuw/heph"
readme = "README.md"
keywords = ["actor", "framework", "async", "functions"]
categories = ["asynchronous", "web-programming"]
include = ["/Cargo.toml", "/src/**/*.rs", "/README.md", "/LICENSE"]
edition = "2018"
[features]
default = []
# Feature that enables the `test` module.
test = ["getrandom"]
[dependencies]
crossbeam-channel = { version = "0.5.0", default-features = false, features = ["std"] }
heph-inbox = { version = "0.2.1", default-features = false }
libc = { version = "0.2.96", default-features = false }
log = { version = "0.4.8", default-features = false }
mio = { version = "0.7.5", default-features = false, features = ["os-poll", "tcp", "udp", "pipe"] }
mio-signals = { version = "0.1.5", default-features = false }
socket2 = { version = "0.4.0", default-features = false, features = ["all"] }
# Optional dependencies, enabled by features.
# Required by the `test` feature.
getrandom = { version = "0.2.2", default-features = false, features = ["std"], optional = true }
[dev-dependencies]
getrandom = { version = "0.2.2", default-features = false, features = ["std"] }
# Enable logging panics via `std-logger`.
std-logger = { version = "0.4.0", default-features = false, features = ["log-panic", "nightly"] }
[[test]]
name = "process_signals"
# Require full control over the spawned threads.
harness = false
[workspace]
members = [
"http",
"tools",
"benches/timers_container",
]