36 lines
780 B
TOML
36 lines
780 B
TOML
[package]
|
|
name = "docx-rs"
|
|
version = "0.4.0"
|
|
authors = ["bokuweb <bokuweb12@gmail.com>"]
|
|
repository = "https://github.com/bokuweb/docx-rs"
|
|
edition = "2018"
|
|
license = "MIT"
|
|
readme = "../README.md"
|
|
description = "A .docx file writer with Rust/WebAssembly."
|
|
keywords = [
|
|
"office",
|
|
"word",
|
|
"docx",
|
|
]
|
|
|
|
[lib]
|
|
name = "docx_rs"
|
|
path = "src/lib.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
xml-rs = "0.8.4"
|
|
wasm-bindgen = "0.2.78"
|
|
thiserror = "1.0"
|
|
zip = { version = "0.6.0", default-features = false, features = ["deflate"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
base64 = "0.13.0"
|
|
image = "0.23.14"
|
|
ts-rs = "6.1"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.2.0"
|
|
insta = "1.14"
|