[package] name = "tabprinter" version = "0.1.2" edition = "2021" license = "MIT" description = "tabprinter is a Rust library for creating and printing formatted tables in the terminal. It supports various table styles and offers both color and non-color output options." authors = ["Volker Schwaberow "] github = "https://github.com/vschwaberow/tabprinter" repository = "https://github.com/vschwaberow/tabprinter" [profile.release] strip = "symbols" lto = true codegen-units = 1 opt-level = "s" [[example]] name = "basic_usage" path = "examples/basic_usage.rs" [[example]] name = "different_styles" path = "examples/different_styles.rs" [[example]] name = "custom_data" path = "examples/custom_data.rs" [dependencies] csv = "1.3.0" termcolor = "1.4.1"