-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 732 Bytes
/
Cargo.toml
File metadata and controls
36 lines (31 loc) · 732 Bytes
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
[package]
name = "diff2html"
description = "Pretty diff to html Rust library (diff2html) https://diff2html.xyz"
license = "MIT"
version = "0.2.3"
authors = ["Brett Girton <enzi@fuzo.us>"]
homepage = "https://diff2html.xyz"
repository = "https://github.com/enzious/diff2html"
documentation = "https://docs.rs/diff2html"
edition = "2018"
exclude = [
"test_files/*",
]
[lib]
name = "diff2html"
path = "src/lib.rs"
[[bin]]
name = "diff2html"
path = "src/main.rs"
doc = false
[dependencies]
difference = "2.0.0"
encoding_rs_io = "0.1.6"
handlebars = "1.1.0"
lazy_static = "1.3.0"
regex = "1.1.5"
seahash = "3.0.6"
serde = { version = "1.0.90", features = ["derive"] }
serde_json = "1.0.39"
clap = "2.33.0"
v_htmlescape = "0.4.3"