-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
80 lines (67 loc) · 1.68 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
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "rustupolis"
version = "0.0.3"
authors = ["Michael Wagner <[email protected]>"]
edition = "2021"
description = "An implementation of the tuple space data structure in Rust."
repository = "https://github.com/micutio/rustupolis"
readme = "README.md"
# Up to five keywords.
keywords = ["tuple-space", "concurrent", "distributed", "decentralized"]
categories = ["command-line-utilities", "data-structures"]
license = "MIT"
[badges]
travis-ci = { repository = "https://travis-ci.org/Micutio/rustupolis", branch = "master" }
[lib]
name = "rustupolis"
path = "src/lib/lib.rs"
test = true
doctest = true
[[bin]]
name = "rustupolis_cli"
path = "src/bin/cli/cli.rs"
test = true
doctest = true
required-features = ["cli"]
[[bin]]
name = "rustupolis_server"
path = "src/bin/server/main.rs"
test = true
doctest = true
required-features = ["server"]
[dependencies]
# clap = "2.33.1"
error-chain = "0.12"
futures = { version = "0.3" }
indextree-ng = "1.0"
log = "0.4"
pretty_env_logger = "0.4"
rand = "0.8"
rand_isaac = "0.3"
mio = { version = "0.8", features = ["net", "os-poll"], optional = true }
crossbeam = { version = "0.8", optional = true }
anyhow = { version = "1.0.71", features = ["backtrace"] }
[features]
cli = []
server = ["mio", "crossbeam"]
[[example]]
name = "hello_world"
path = "examples/hello_world/main.rs"
[[example]]
name = "single_threaded"
path = "examples/single_threaded/main.rs"
[[example]]
name = "multi_threaded"
path = "examples/multi_threaded/main.rs"
[[test]]
name = "tuple"
path = "tests/tuple.rs"
[[test]]
name = "simplestore"
path = "tests/simplestore.rs"
[[test]]
name = "wildcard"
path = "tests/wildcard.rs"
[[test]]
name = "space"
path = "tests/space.rs"