-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
46 lines (41 loc) · 1.14 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
[package]
name = "fera"
version = "0.3.0"
authors = ["malbarbo"]
description = """
An aggregation of algorithms, data structures and supporting crates.
"""
categories = ["algorithms", "data-structures"]
repository = "https://github.com/malbarbo/fera"
readme = "README.md"
license = "MPL-2.0"
[workspace]
members = [
"array",
"ext",
"fun",
"graph",
"optional",
# "tree",
"unionfind",
]
[dependencies]
fera-array = { version = "0.1", path = "array", optional = true }
fera-ext = { version = "0.3", path = "ext", optional = true }
fera-fun = { version = "0.1", path = "fun", optional = true }
fera-graph = { version = "0.3", path = "graph", optional = true }
fera-optional = { version = "0.2", path = "optional", optional = true }
# fera-tree = { version = "0.1", path = "tree/", optional = true }
fera-unionfind = { version = "0.1", path = "unionfind", optional = true }
[dev-dependencies]
version-sync = "0.7"
[features]
array = ["fera-array"]
ext = ["fera-ext"]
fun = ["fera-fun"]
graph = ["fera-graph"]
optional = ["fera-optional"]
# tree = ["fera-tree"]
unionfind = ["fera-unionfind"]
[package.metadata.docs.rs]
all-features = true