-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 873 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
33
34
35
36
37
38
[package]
name = "elinor-cli"
version = "0.1.3"
edition = "2021"
authors = ["Shunsuke Kanda (kampersanda) <[email protected]>"]
description = "Command line tools for elinor."
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/kampersanda/elinor/tree/main/elinor-cli"
keywords = ["information", "retrieval", "evaluation", "cli"]
categories = ["science"]
rust-version = "1.65.0"
[dependencies]
anyhow = "1.0.89"
clap = { version = "4.5.20", features = ["derive"] }
polars = "0.43.1"
polars-lazy = "0.43.1"
prettytable-rs = "0.10.0"
serde_json = "1.0.128"
[dependencies.elinor]
version = "0.4.0"
path = ".."
features = ["serde"]
default-features = false
[[bin]]
name = "elinor-convert"
path = "src/bin/convert.rs"
[[bin]]
name = "elinor-evaluate"
path = "src/bin/evaluate.rs"
[[bin]]
name = "elinor-compare"
path = "src/bin/compare.rs"