-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
70 lines (62 loc) · 1.58 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
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "maxim"
version = "0.1.0-alpha.0"
edition = "2018"
authors = [
"Maxim Contributors",
"Zicklag <zicklag@katharostech.com>",
"Robert Simmons Jr. MSc.",
"Khionu Sybiern <dev@khionu.net>"
]
license = "Apache-2.0"
homepage = "https://github.com/katharostech/maxim"
repository = "https://github.com/katharostech/maxim"
documentation = "https://docs.rs/maxim"
readme = "README.md"
description = """
Implements a highly-scalable and ergonomic actor system for Rust based on the
best of Erlang / Elixir and Akka. A fork of the Axiom actor framework.
"""
keywords = [
"Actor",
"Actors",
"Akka",
"Erlang",
"Elixir"
]
categories = [
"asynchronous",
"concurrency"
]
exclude = [
"/.gitignore",
"/.git",
"/.github",
"/.travis.yml",
"/modoc.config",
]
[features]
default = ["actor-pool"]
actor-pool = ["rand", "rand_xoshiro"]
[badges]
# We won't be using Travis in a bit
#travis-ci = { repository = "katharostech/maxim" }
is-it-maintained-issue-resolution = { repository = "katharostech/maxim" }
is-it-maintained-open-issues = { repository = "katharostech/maxim" }
maintenance = { status = "actively-developed" }
[dev-dependencies]
env_logger = "^0.7.1"
rand = "^0.7"
serde_json = "^1.0.40"
[dependencies]
bincode = "1.1.4"
dashmap = "1.0.3"
futures = "0.3.1"
num_cpus = "1.10.1"
log = "0.4"
once_cell = "1.0.2"
secc = "0.0.10"
serde = { version = "1.0.97", features = ["derive", "rc"] }
uuid = { version = "0.8.1", features = ["serde", "v4"]}
rand = { version = "0.7.3", optional = true }
rand_xoshiro = { version = "0.4.0", optional = true }