[package] name = "xlsx_split" version = "1.0.1" edition = "2021" description = "A tool for automatically splitting xlsx file" keywords = ["split", "xlsx", "tools"] license = "MIT OR Apache-2.0" authors = ["一叶微尘 "] repository = "https://gitee.com/eshangrao/xlsx-split" [features] default = ["encrypt","bin"] # 对xlsx加密 encrypt = ["dep:msoffice_crypt"] # 生成split二进制工具 bin = ["dep:clap"] [dependencies] # excel 加密 msoffice_crypt = { version = "0.1", optional = true } # xlsx写入 umya-spreadsheet = "1.2" # 命令行接口 clap = { version = "4", optional = true ,features = ["derive"]}