-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 859 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 859 Bytes
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
[package]
name = "orbweaver"
version = "0.18.2"
edition = "2021"
authors = ["ixpantia <hola@ixpantia.com>", "Andrés F. Quintero <andres@ixpantia.com>"]
description = "Crate designed for effortless construction and analysis of graph data structures."
repository = "https://github.com/ixpantia/orbweaver-rs"
license = "MIT"
readme = "README.md"
exclude = ["assets/"]
[dev-dependencies]
criterion = "0.5"
ntest_timeout = "0.9.3"
serde_json = "1.0.132"
ureq = "2.9.7"
[dependencies]
fxhash = "0.2.1"
rayon = "1.10.0"
serde = { version = "1.0.202", features = ["derive", "rc"], optional = true }
serde_cbor = { version = "0.11.2", optional = true }
flate2 = { version = "1.0", optional = true }
[features]
serde = ["dep:serde"]
binary = ["serde", "dep:serde_cbor", "dep:flate2"]
default = ["serde", "binary"]
[[bench]]
name = "directed_graph"
harness = false