forked from tafia/calamine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (43 loc) · 1.39 KB
/
Cargo.toml
File metadata and controls
51 lines (43 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "calamine"
version = "0.33.0"
authors = ["Johann Tuffe <tafia973@gmail.com>"]
repository = "https://github.com/tafia/calamine"
documentation = "https://docs.rs/calamine"
description = "An Excel/OpenDocument Spreadsheet reader and deserializer in pure Rust"
license = "MIT"
readme = "README.md"
keywords = ["excel", "ods", "xls", "xlsx", "xlsb"]
categories = ["encoding", "parsing", "text-processing"]
exclude = ["tests/**/*"]
edition = "2021"
rust-version = "1.83" # For quick-xml + encoding_rs.
[dependencies]
log = "0.4"
serde = "1.0"
codepage = "0.1"
atoi_simd = "0.17"
byteorder = "1.5"
encoding_rs = "0.8"
fast-float2 = "0.2"
zip = { version = "7.0", default-features = false, features = ["deflate"] }
quick-xml = { version = "0.38", features = ["encoding"] }
# Optional dependencies.
chrono = { version = "0.4", features = ["serde"], optional = true, default-features = false }
[dev-dependencies]
glob = "0.3"
sha2 = "0.10"
env_logger = "0.11"
serde_derive = "1.0"
rstest = { version = "0.26", default-features = false }
[features]
default = []
# `chrono`: Adds support for Chrono dates and times.
chrono = ["dep:chrono"]
# `picture`: Adds support for reading raw data for pictures in spreadsheets.
picture = []
# `dates`: Backwards compatible synonym for the `chrono` feature.
dates = ["chrono"]
[package.metadata.docs.rs]
features = ["chrono", "picture"]
rustdoc-args = ["--cfg", "docsrs"]