[package] name = "csv_fish" version = "0.2.4" authors = ["Kamila Stránská", "Jiří Stránský "] description = """\ CSV categorical data analyzer. Generates 2x2 contingency tables \ according to specified row/column group conditions, and applies \ Fisher's exact test. \ """ readme = "README.md" edition = "2018" license = "GPL-3.0+" repository = "https://gitlab.com/jistr/csv-fish" [[bin]] name = "csv-fish" path = "src/main.rs" [dependencies] clap = "^2.32" csv = "^1.0" fishers_exact = "^1.0" # bundle SQLite to make the binary self-contained rusqlite = { version = "^0.16.0", features = ["bundled"] }