[package]
edition = "2021"
name = "spread-cli"
version = "0.1.2"
build = false
exclude = ["tests/fixtures/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Converts spreadsheets and CSV files to a friendly JSON format with many field name and data-type options."
readme = "README.md"
keywords = [
"cli",
"spreadsheet",
"excel",
"csv",
"json",
]
categories = [
"text-processing",
"parsing",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/neilg63/spreadsheet_to_json_cli"
[[bin]]
name = "spread-cli"
path = "src/main.rs"
[[example]]
name = "gen_fixtures"
path = "examples/gen_fixtures.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.args]
version = "^2.2.0"
[dependencies.clap]
version = "^4.6.1"
features = [
"env",
"derive",
]
[dependencies.dotenv]
version = "^0.15.0"
features = [
"clap",
"cli",
]
[dependencies.simple-string-patterns]
version = "0.4.0"
[dependencies.spreadsheet-to-json]
version = "0.2.3"
[dependencies.to_segments]
version = "0.1.2"
[dependencies.uuid]
version = "^1.23.5"
features = [
"fast-rng",
"v4",
]
[dev-dependencies.rust_xlsxwriter]
version = "0.89"
[dev-dependencies.serde_json]
version = "1.0"