-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
52 lines (47 loc) · 1.26 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
47
48
49
50
51
52
[package]
name = "omikuji"
description = "an efficient implementation of Partitioned Label Treesand its variations for extreme multi-label classification"
version = "0.5.1"
edition = "2021"
authors = ["Tom Dong <[email protected]>"]
license = "MIT"
repository = "https://github.com/tomtung/omikuji"
documentation = "https://docs.rs/omikuji"
keywords = [
"machine-learning",
"multi-label",
"classification",
"xmc",
]
readme = "README.md"
exclude = ["examples/"]
[dependencies]
const-default = "1.0.*"
clap = { version = "4.4.*", features = ["cargo", "derive"], optional = true }
hashbrown = "0.14.*"
itertools = "0.11.*"
log = "0.4.*"
ndarray = { version = "0.14.*", features = ["serde-1"] }
num-traits = "0.2.*"
order-stat = "0.1.*"
ordered-float = "3.0.*"
pbr = "1.1.*"
rand = "0.8.*"
rayon = "1.8.*"
serde = { version = '1.0.*', features = ['derive'] }
serde_cbor = "0.11.*"
serde_json = "1.0.*"
simple_logger = { version = "4.2.*", features = ["stderr"], optional = true }
sprs = { version = "0.9.*", features = ["serde"] }
pdqselect = "0.1.*"
[dev-dependencies]
assert_approx_eq = "1.1.*"
[[bin]]
name = "omikuji"
path = "src/bin/omikuji.rs"
required-features = ["cli"]
[features]
cli = ["simple_logger", "clap"]
[profile.release]
lto = true
codegen-units = 1