-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (37 loc) · 1.14 KB
/
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
39
40
41
42
43
[package]
name = "somedoc"
version = "0.2.10"
authors = ["Simon Johnston <[email protected]>"]
edition = "2018"
description = "A very simple document model and markup generator."
documentation = "https://docs.rs/somedoc/"
repository = "https://github.com/johnstonskj/rust-somedoc.git"
license = "MIT"
readme = "README.md"
publish = true
[features]
default = ["fmt_html", "fmt_json", "fmt_latex", "fmt_markdown"]
fmt_html = []
fmt_json = ["serde", "serde_json"]
fmt_latex = []
fmt_markdown = []
math_builder = []
emoji_names = []
[package.metadata.docs.rs]
# This sets the default target to `x86_64-unknown-linux-gnu`
# and only builds that target for documentation.
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
blob-uuid = "0.5.0"
error-chain = "0.12"
lazy_static = "1.4"
regex = "1.6"
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
[dev-dependencies]
proptest = "1.0"
pretty_assertions = "1.2"
[dev-dependencies.cargo-husky]
version = "1"
default-features = false # Disable features which are enabled by default
features = ["precommit-hook", "run-cargo-fmt", "run-cargo-test" ]