-
Notifications
You must be signed in to change notification settings - Fork 57
/
Cargo.toml
72 lines (62 loc) · 1.76 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "deno_doc"
version = "0.157.0"
edition = "2021"
description = "doc generation for deno"
authors = ["the Deno authors"]
license = "MIT"
repository = "https://github.com/denoland/deno_doc"
[workspace]
members = ["lib"]
[workspace.dependencies]
deno_graph = { version = "0.84.0", default-features = false, features = ["symbols"] }
deno_ast = { version = "0.43.0" }
import_map = "0.20.0"
serde = { version = "1.0.204", features = ["derive"] }
[lib]
crate-type = ["cdylib", "rlib"]
name = "deno_doc"
[[example]]
name = "ddoc"
required-features = ["html", "comrak"]
[dependencies]
anyhow = "1.0.86"
cfg-if = "1.0.0"
deno_ast.workspace = true
deno_graph.workspace = true
indexmap = "2.3.0"
futures = "0.3.30"
import_map.workspace = true
lazy_static = "1.5.0"
regex = "1.10.6"
serde.workspace = true
serde_json = { version = "1.0.122", features = ["preserve_order"] }
termcolor = "1.4.1"
itoa = "1.0.11"
html-escape = { version = "0.2.13", optional = true }
handlebars = { version = "6.1", features = ["string_helpers"], optional = true }
comrak = { version = "0.29.0", optional = true, default-features = false }
ammonia = { version = "4.0.0", optional = true }
[dev-dependencies]
anyhow = { version = "1.0.86" }
clap = "2.34.0"
console_static_text = "0.8.2"
criterion = { version = "0.4.0", features = ["async_futures", "html_reports"] }
file_test_runner = "0.7.2"
tokio = { version = "1.39.2", features = ["full"] }
pretty_assertions = "1.4.0"
insta = { version = "1.39.0", features = ["json"] }
[features]
default = ["rust", "html", "comrak"]
rust = []
html = ["html-escape", "handlebars"]
comrak = ["dep:comrak", "ammonia"]
[[test]]
name = "specs"
path = "tests/specs_test.rs"
harness = false
[profile.release]
codegen-units = 1
incremental = true
lto = true
opt-level = "s"