-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (37 loc) · 1.08 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
[package]
name = "elinor"
version = "0.4.0"
edition = "2021"
authors = ["Shunsuke Kanda (kampersanda) <shnsk.knd@gmail.com>"]
description = "Evaluation Library in Information Retrieval"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/elinor"
repository = "https://github.com/kampersanda/elinor"
homepage = "https://github.com/kampersanda/elinor"
keywords = ["information", "retrieval", "evaluation"]
categories = ["science"]
rust-version = "1.65.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
serde = ["dep:serde", "ordered-float/serde"]
[dependencies]
ordered-float = "4.2.2"
rand = "0.8.5"
regex = "1.10.6"
serde = { version = "1.0.210", optional = true, features = ["derive"] }
statrs = "0.17.1"
thiserror = "1.0.63"
[dev-dependencies]
anyhow = "1.0.87"
approx = "0.5.1"
maplit = "1.0.2"
rstest = "0.22.0"
serde_json = "1.0.128"
[workspace]
members = ["elinor-cli"]
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "katex.html"]
features = ["serde"]
default-features = false