-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
55 lines (45 loc) · 1.54 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
52
53
54
55
[package]
name = "heph"
description = "Heph is an actor framework based on asynchronous functions."
version = "0.5.0"
publish = false # In development.
authors = ["Thomas de Zeeuw <[email protected]>"]
license = "MIT"
documentation = "https://docs.rs/heph"
repository = "https://github.com/Thomasdezeeuw/heph"
readme = "README.md"
keywords = ["actor", "async", "functions"]
categories = ["asynchronous", "web-programming"]
include = ["/Cargo.toml", "/src/**/*.rs", "/README.md", "/LICENSE"]
edition = "2021"
[features]
default = []
# Feature that enables the `test` module.
test = ["getrandom"]
[dependencies]
heph-inbox = { version = "0.2.3", path = "./inbox", default-features = false }
log = { version = "0.4.21", default-features = false, features = ["kv_std"] }
# Optional dependencies, enabled by features.
# Required by the `test` feature.
getrandom = { version = "0.2.2", default-features = false, features = ["std"], optional = true }
[dev-dependencies]
# NOTE: the following two dependencies may only used by a limited number of examples.
heph-rt = { version = "0.5.0", path = "./rt", default-features = false }
std-logger = { version = "0.5.3", default-features = false }
[[test]]
name = "examples"
[[test]]
name = "functional"
required-features = ["test"]
[[test]]
name = "message_loss"
required-features = ["test"]
[workspace]
members = [
"http",
"inbox",
"remote",
"rt",
"tools",
"benches/timers_container",
]