-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 800 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 800 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
[package]
name = "mn2"
description = "Discovery of Markov network structures"
version = "0.2.0"
authors = ["Torm"]
edition = "2021"
homepage = "https://github.com/Torm/mn2"
repository = "https://github.com/Torm/mn2"
license = "MIT OR Apache-2.0"
[dependencies]
ndarray = "0.15.6"
statrs = "0.16.0"
nalgebra = "0.32.2"
special = "0.10.2"
dashmap = { version = "5.5.3", features = ["rayon", "inline"] }
fxhash = { version = "0.2.1", features = [] }
byteorder = "1.4.3"
rayon = "1.7.0"
parking_lot = { version = "0.12.1", features = [] }
console = { version = "0.15.7", features = [] }
indicatif = { version = "0.17.6", features = ["rayon", "improved_unicode"] }
log = "0.4.20"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
[[bench]]
name = "main"
harness = false