-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (33 loc) · 1.17 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
[package]
name = "pmrs"
version = "0.0.2"
edition = "2021"
homepage = "https://github.com/DerAndereJohannes/pmrs"
description = "Rust support to process mining functions. Includes a library and a small cli-interface."
repository = "https://github.com/DerAndereJohannes/pmrs"
documentation = "https://github.com/DerAndereJohannes/pmrs"
keywords = ["process-mining", "data-mining", "data-science", "machine-learning", "performance"]
categories = ["data-structures", "concurrency", "command-line-utilities", "science"]
license = "LGPL-3.0-only"
readme = "README.md"
authors = ["Johannes Herforth"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
quick-xml = { version = "0.30", features = ["serialize"] }
ron = "0.8"
num_enum = "0.7"
strum = { version = "0.25", features = ["derive"] }
indexmap = { version = "2.0", features = ["serde"] }
nohash-hasher = "0.2"
rayon = "1.7"
itertools = "0.11"
streaming-stats = "0.2"
chrono = { version = "0.4", features = ["serde"] }
ahash = { version= "0.8", features = ["serde"] }
jsonschema = "0.17"
petgraph = "0.6"
num-traits = "0.2"
bimap = "0.6"
polars = {version = "0.32", features = ["dtype-u8"] }
lazy_static = "1.4"