-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
57 lines (42 loc) · 1.49 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
56
57
[package]
name = "stakker"
version = "0.2.11"
authors = ["Jim Peters <[email protected]>"]
edition = "2021"
rust-version = "1.63.0"
description = "A lightweight low-level single-threaded actor runtime"
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/uazu/stakker"
documentation = "https://docs.rs/stakker"
homepage = "https://uazu.github.io/stakker"
keywords = [ "actor", "runtime", "async", "pony", "erlang" ]
categories = [ "asynchronous", "concurrency", "data-structures" ]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
static_assertions = "1.0"
qcell = "0.5"
slab = "0.4"
# For more details on features, see crate docs. Features are additive
# in cargo, so summing features must result a less restrictive, more
# flexible configuration (even if less efficient), or else things will
# break when different crates using Stakker are combined in a build.
[features]
default = ["inter-thread"]
# Disable all unsafe code and compile with #[forbid(unsafe_code)]
no-unsafe = []
# Disable the unsafe fast FnOnce queue code
no-unsafe-queue = []
# Allow Stakker to run in more than one thread at a time
multi-thread = []
# Allow more than one Stakker to run in each thread
multi-stakker = []
# Force use of the inline Deferrer
inline-deferrer = []
# Enable inter-thread operations: Waker, PipedThread
inter-thread = []
# Enable core logger support (Stakker::set_logger())
logger = []
# Ignored for backwards-compatibility. `anymap` is now always enabled
anymap = []