-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
38 lines (35 loc) · 932 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
36
37
38
[package]
name = "drawio-exporter"
version = "1.2.0"
edition = "2021"
authors = ["rlespinasse <[email protected]>"]
description = "Command Line Client To Enhance Files Export Using Draw.io Application"
readme = "CRATES.md"
license = "MIT"
documentation = "https://docs.rs/drawio-exporter"
repository = "https://github.com/rlespinasse/drawio-exporter"
keywords = ["drawio", "export", "command-line"]
categories = ["command-line-utilities"]
[lib]
name = "drawio_exporter"
path = "src/drawio_exporter/lib.rs"
[dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["cargo"] }
predicates = "3.1"
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
serde-xml-rs = "0.6"
ignore = "0.4"
flate2 = "1.0"
base64 = "0.22"
urlencoding = "2.1"
regex = "1.11"
git2 = "0.19"
relative-path = "1.9"
[dev-dependencies]
assert_cmd = "2.0"
tempfile = "3.13"
fs_extra = "1.3"
filetime = "0.2"
glob = "0.3.1"