2019-09-11 21:28:14 +03:00
|
|
|
[package]
|
2020-01-24 12:44:43 +02:00
|
|
|
name = "docx-rs"
|
|
|
|
version = "0.2.0"
|
2019-09-11 21:28:14 +03:00
|
|
|
authors = ["bokuweb <bokuweb12@gmail.com>"]
|
2020-01-24 12:44:43 +02:00
|
|
|
repository = "https://github.com/bokuweb/docx-rs"
|
2019-09-11 21:28:14 +03:00
|
|
|
edition = "2018"
|
2020-01-24 12:44:43 +02:00
|
|
|
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"
|
2019-11-07 11:11:32 +02:00
|
|
|
zip = { version = "0.5", default-features = false }
|
2019-11-06 12:17:49 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-01-24 12:44:43 +02:00
|
|
|
pretty_assertions = "0.6.1"
|
|
|
|
|