docx-rs/docx-core/Cargo.toml

34 lines
748 B
TOML
Raw Normal View History

2019-09-11 21:28:14 +03:00
[package]
name = "docx-rs"
version = "0.2.12"
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"
2021-02-25 14:24:34 +02:00
description = "A .docx file writer 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]
xml-rs = "0.8.3"
2021-03-19 07:14:25 +02:00
wasm-bindgen = "0.2.53"
2019-11-11 11:34:55 +02:00
thiserror = "1.0"
zip = { version = "0.5.6", default-features = false, features = ["deflate"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
image = "0.23.14"
2019-11-06 12:17:49 +02:00
[dev-dependencies]
pretty_assertions = "0.7.2"
insta = "1.7"