-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 818 Bytes
/
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
[package]
name = "mhgl"
version = "0.2.2"
edition = "2021"
license = "MIT"
description = "Matts HyperGraph Library (MHGL). A straightforward library for hypergraph datastructures."
repository = "https://github.com/matthagan15/mhgl"
[package.metadata.docs.rs]
all-features = "true"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
fxhash = "0.2.1"
indexmap = { version = "2.2.6", features = ["serde"] }
polars = { version = "0.39.2", features = [
"dtype-u8",
"dtype-u16",
"dtype-i8",
"dtype-i16",
], optional = true }
rand = "0.8.5"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
uuid = { version = "1.2.2", features = [
"v4",
"fast-rng",
"serde",
"macro-diagnostics",
], optional = true }