docx-rs/docx-core/Cargo.toml

34 lines
750 B
TOML
Raw Normal View History

2019-09-11 21:28:14 +03:00
[package]
name = "docx-rs"
2020-03-10 05:15:03 +02:00
version = "0.2.2"
2019-09-11 21:28:14 +03:00
authors = ["bokuweb <bokuweb12@gmail.com>"]
repository = "https://github.com/bokuweb/docx-rs"
2019-09-11 21:28:14 +03:00
edition = "2018"
license = "MIT"
readme = "../README.md"
description = "A .docx file generater with Rust/WebAssembly."
keywords = [
"office",
"word",
"docx",
]
[lib]
name = "docx_rs"
path = "src/lib.rs"
2019-09-11 21:28:14 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2019-09-13 13:41:05 +03:00
[dependencies]
2019-11-06 12:17:49 +02:00
xml-rs = "0.8.0"
2019-11-07 11:45:03 +02:00
wasm-bindgen = "0.2.50"
2019-11-11 11:34:55 +02:00
thiserror = "1.0"
zip = { version = "0.5.4", default-features = false, features = ["deflate"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
image = "0.23.4"
2019-11-06 12:17:49 +02:00
[dev-dependencies]
pretty_assertions = "0.6.1"
insta = "0.13"