-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathCargo.toml
59 lines (51 loc) · 1.26 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
# Cargo configuration for Axiom
[package]
name = "axiom"
version = "0.2.1"
edition = "2018"
authors = ["Robert Simmons Jr. MSc.", "Khionu Sybiern <dev@khionu.net>"]
license = "Apache-2.0"
homepage = "https://github.com/rsimmonsjr/axiom"
repository = "https://github.com/rsimmonsjr/axiom"
documentation = "https://docs.rs/axiom"
readme = "README.md"
description = """
Implements a highly-scalable and ergonomic actor system for Rust based on the
best of Erlang / Elixir and Akka.
"""
keywords = [
"Actor",
"Actors",
"Akka",
"Erlang",
"Elixir"
]
categories = [
"asynchronous",
"concurrency"
]
exclude = [
"/.gitignore",
"/.git",
"/.github",
"/.travis.yml",
]
[badges]
travis-ci = { repository = "rsimmonsjr/axiom" }
is-it-maintained-issue-resolution = { repository = "rsimmonsjr/axiom" }
is-it-maintained-open-issues = { repository = "rsimmonsjr/axiom" }
maintenance = { status = "actively-developed" }
[dev-dependencies]
env_logger = "^0.6.2"
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.7.4", features = ["serde", "v4"]}