forked from tafia/calamine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 979 Bytes
/
Cargo.toml
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
[package]
name = "calamine"
version = "0.18.0"
authors = ["Johann Tuffe <[email protected]>"]
repository = "https://github.com/tafia/calamine"
documentation = "https://docs.rs/calamine"
description = "An Excel/OpenDocument Spreadsheets reader and deserializer in pure rust"
license = "MIT"
readme = "README.md"
keywords = ["excel", "vba", "office", "ods", "serde"]
categories = ["encoding", "parsing", "text-processing"]
exclude = ["tests/**/*"]
edition = "2018"
[badges]
travis-ci = { repository = "tafia/calamine" }
appveyor = { repository = "tafia/calamine" }
[dependencies]
byteorder = "1.3.4"
codepage = "0.1.1"
encoding_rs = "0.8.24"
log = "0.4.11"
serde = "1.0.116"
quick-xml = { version = "0.19", features = ["encoding"] }
zip = { version = "0.5.8", default-features = false, features = ["deflate"] }
chrono = { version = "0.4.17", features = ["serde"], optional = true }
[dev-dependencies]
glob = "0.3"
env_logger = "0.7"
[features]
default = []
dates = ["chrono"]