# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "tabprinter" version = "0.1.2" authors = ["Volker Schwaberow "] build = false autobins = false autoexamples = false autotests = false autobenches = false 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." readme = "README.md" license = "MIT" repository = "https://github.com/vschwaberow/tabprinter" [profile.release] opt-level = "s" lto = true codegen-units = 1 strip = "symbols" [lib] name = "tabprinter" path = "src/lib.rs" [[example]] name = "basic_usage" path = "examples/basic_usage.rs" [[example]] name = "csv_usage" path = "examples/csv_usage.rs" [[example]] name = "custom_data" path = "examples/custom_data.rs" [[example]] name = "different_styles" path = "examples/different_styles.rs" [dependencies.csv] version = "1.3.0" [dependencies.termcolor] version = "1.4.1"