[package] name = "elinor-cli" version = "0.1.3" edition = "2021" authors = ["Shunsuke Kanda (kampersanda) "] 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"